Hello group member i want to use data control grid in my webpage using php script so guide me about functions and events of it i like to download free code as an example so plz tell me what are the url which can help me thanx kals patel
[email protected] wrote: There are 8 messages in this issue. Topics in this digest: 1. Re: connecting with any DataBase From: "Andrew Thorne" 2. Re: php and mysql From: kray blue 3. Re: Re: pl/sql = oracle; _________ = mysql; From: kray blue 4. Re: connecting with any DataBase From: Jeromie Clark 5. Help Me--TYPO-3 Content Management System--Urgent From: Raj Aryan 6. Re: Help Me--TYPO-3 Content Management System--Urgent From: Jeromie Clark 7. Re: Help Me--TYPO-3 Content Management System--Urgent From: Raj Aryan 8. Re: Re: pl/sql = oracle; _________ = mysql; From: Anggie Bratadinata ________________________________________________________________________ ________________________________________________________________________ Message: 1 Date: Mon, 27 Feb 2006 13:55:17 +0100 From: "Andrew Thorne" Subject: Re: connecting with any DataBase Also you might want to look at www.connectionstrings.com to find the right connection string, if that is what you are looking for. >From: Michael Roush >Reply-To: [email protected] >To: [email protected] >Subject: Re: [php_mysql] connecting with any DataBase >Date: Fri, 24 Feb 2006 09:27:03 -0800 (PST) > >--- Mr SHOAIB wrote: > > > Hi! > > Do any body has the Code of Connection PHP to any > > DataBase(Excell,access,mysql,oracle). > >You may wish to think about using the ADOdb library for PHP. > >http://adodb.sourceforge.net/ > >This database abstraction library helps designers make their code work >with many popular database formats. Access, MySQL and Oracle are >supported. Excel is not. > > > >Michael Roush >[EMAIL PROTECTED] > >"The power of the Web is in its universality. Access by everyone regardless >of disability is an essential aspect." >-- Tim Berners-Lee, W3C Director and inventor of the World Wide Web > >__________________________________________________ >Do You Yahoo!? >Tired of spam? Yahoo! Mail has the best spam protection around >http://mail.yahoo.com _________________________________________________________________ Free blogging with MSN Spaces http://spaces.msn.com/?mkt=nl-be ________________________________________________________________________ ________________________________________________________________________ Message: 2 Date: Mon, 27 Feb 2006 02:53:12 -0800 (PST) From: kray blue Subject: Re: php and mysql imho check your $opinion variable.. set it to $gorus ... your $password variable is set to $sifre... try changing it so it would be the same.. or it may be caused by wrong id/name of your html form. pls do check it. regards, kray onurdyh wrote: hii everybody I have a problem if you help it is wonderfull; I create a database (onurdyhdb) and a table (onurdyhtablo) there are variables name surname usernick passeord email and opinion like as a form.When I insert to table the password and opinion dont work I cant insert the data and cant list them but the others work very well this is my code; $ad=$_POST['name']; $soyad=$_POST['surname']; $kullaniciadi=$_POST[nick]; $sifre=$_POST[password]; $email=$_POST['email']; $gorus=$_POST[opinion]; $baglanti = mysql_connect ("localhost","root"); if (!$link) { echo "not connected".mysql_error(); } else { echo " connectedp>"; } @mysql_select_db("onurdyhdb",$link) or die ("not connected to db.."); $sql = "insert into onurdyhtablo (name, surname, nick, password, email, opinion) values ('$name', '$surname', '$nick', '$password', '$email', '$opinion')"; $rcd= mysql_query($sql); if (isset ($rcd)) { echo " saved ok. "; } else { echo " not saved.."; } mysql_close($link); ?> --------------------------------- Yahoo! Mail Bring photos to life! New PhotoMail makes sharing a breeze. [Non-text portions of this message have been removed] The php_mysql group is dedicated to learn more about the PHP/MySQL web database possibilities through group learning. SPONSORED LINKS American general life and accident insurance company American general life insurance company American general life American general mortgage American general life insurance Computer internet security --------------------------------- YAHOO! GROUPS LINKS Visit your group "php_mysql" on the web. To unsubscribe from this group, send an email to: [EMAIL PROTECTED] Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. --------------------------------- __ _ ____ | |(_) / || | __ _ ,_ _______ | -- | || |> \/'\/ || __ | \ \ | || || +-+-+ || ___/ /+__\ \| || || | | | | \ \ < > copyryt 2003 (r) --------------------------------- Yahoo! Mail Bring photos to life! New PhotoMail makes sharing a breeze. [Non-text portions of this message have been removed] ________________________________________________________________________ ________________________________________________________________________ Message: 3 Date: Mon, 27 Feb 2006 03:04:41 -0800 (PST) From: kray blue Subject: Re: Re: pl/sql = oracle; _________ = mysql; thanks guys for the reply. what im really asking is: i know that pl/sql is the stored procedure equivalent in sql server to oracle, in mysql do someone have the ability to have procedures to do nifty sql queries to interact with the client/user? i really try to explain well. sorry for the bad english.. =) regards, kray p.s. in separate question: i have recently installed fedora core 4 and have set up apache/postgre/mysql.. but when i issue http://localhost/ in the web browser, it doesnt display anything... i dont know what went wrong. i can do some changes with linux but this is my first time using/setting up server. any comments? thanks again. Jeromie Clark wrote: MySQL is pretty close to standard ANSI, but it's definitely got it's quirks. PostgreSQL 8 has a a strict implementation of ANSI SQL. >I think he wanted to know what variation of the SQL language that MySQL >uses. Oracle uses a variation called pl/sql. I believe MySQL just uses >the standard ANSI SQL command set. > >Best regards, >Jim at iDimensionz.com > > The php_mysql group is dedicated to learn more about the PHP/MySQL web database possibilities through group learning. Yahoo! Groups Links __ _ ____ | |(_) / || | __ _ ,_ _______ | -- | || |> \/'\/ || __ | \ \ | || || +-+-+ || ___/ /+__\ \| || || | | | | \ \ < > copyryt 2003 (r) --------------------------------- Yahoo! Mail Bring photos to life! New PhotoMail makes sharing a breeze. [Non-text portions of this message have been removed] ________________________________________________________________________ ________________________________________________________________________ Message: 4 Date: Mon, 27 Feb 2006 10:16:09 -0800 From: Jeromie Clark Subject: Re: connecting with any DataBase Another option for a database abstraction library is the PEAR repository's PEAR DB. http://pear.php.net/ -Jeromie >Also you might want to look at www.connectionstrings.com to find the right >connection string, if that is what you are looking for. > > > > >>From: Michael Roush >>Reply-To: [email protected] >>To: [email protected] >>Subject: Re: [php_mysql] connecting with any DataBase >>Date: Fri, 24 Feb 2006 09:27:03 -0800 (PST) >> >>--- Mr SHOAIB wrote: >> >> >> >>>Hi! >>>Do any body has the Code of Connection PHP to any >>>DataBase(Excell,access,mysql,oracle). >>> >>> >>You may wish to think about using the ADOdb library for PHP. >> >>http://adodb.sourceforge.net/ >> >>This database abstraction library helps designers make their code work >>with many popular database formats. Access, MySQL and Oracle are >>supported. Excel is not. >> >> >> >>Michael Roush >>[EMAIL PROTECTED] >> >>"The power of the Web is in its universality. Access by everyone regardless >>of disability is an essential aspect." >>-- Tim Berners-Lee, W3C Director and inventor of the World Wide Web >> >>__________________________________________________ >>Do You Yahoo!? >>Tired of spam? Yahoo! Mail has the best spam protection around >>http://mail.yahoo.com >> >> > >_________________________________________________________________ >Free blogging with MSN Spaces http://spaces.msn.com/?mkt=nl-be > > > >The php_mysql group is dedicated to learn more about the PHP/MySQL web >database possibilities through group learning. >Yahoo! Groups Links > > > > > > > > ________________________________________________________________________ ________________________________________________________________________ Message: 5 Date: Mon, 27 Feb 2006 13:16:29 -0800 (PST) From: Raj Aryan Subject: Help Me--TYPO-3 Content Management System--Urgent Dear Group Members, At that time I am facing a very critical problem regarding TYPO-3 content management system in PHP....I have downloaded all the packages from www.typo3.org for typo3 installation in windows.....I have configured them according to the Install.txt file inside this package....Installation is complete, But whenever I am going to their Back end Administration Area(BE) then the default username(admin) and password(password) whats are given is not validating.....How can I make TYPO-3 cms make active in my system?.....I need Urgent Help....PLEASE help me. Give me solution by steps...... Regards, Srikanta Biswas --------------------------------- Yahoo! Mail Bring photos to life! New PhotoMail makes sharing a breeze. [Non-text portions of this message have been removed] ________________________________________________________________________ ________________________________________________________________________ Message: 6 Date: Mon, 27 Feb 2006 15:18:22 -0800 From: Jeromie Clark Subject: Re: Help Me--TYPO-3 Content Management System--Urgent Hi - You'd probably have to post to their group for help specific to their project, but you might want to check to see if there are requirements for any "special" PHP configurations. I'm thinking specifically of PHP's register_globals flag, although there are a couple others that might affect older PHP projects: http://us3.php.net/register_globals If that's the case, you can set that flag via a .htaccess file for the affected directory/directories. This is a much better plan than enabling the flag server-wide. -Jeromie >Dear Group Members, > At that time I am facing a very critical problem regarding TYPO-3 content > management system in PHP....I > have downloaded all the packages from www.typo3.org for typo3 installation in > windows.....I have configured them > according to the Install.txt file inside this package....Installation is > complete, But whenever I am going to their Back end > Administration Area(BE) then the default username(admin) and > password(password) whats are given is not > validating.....How can I make TYPO-3 cms make active in my system?.....I need > Urgent Help....PLEASE help me. >Give me solution by steps...... > Regards, >Srikanta Biswas > > > >--------------------------------- >Yahoo! Mail >Bring photos to life! New PhotoMail makes sharing a breeze. > >[Non-text portions of this message have been removed] > > > > > > >The php_mysql group is dedicated to learn more about the PHP/MySQL web >database possibilities through group learning. >Yahoo! Groups Links > > > > > > > > ________________________________________________________________________ ________________________________________________________________________ Message: 7 Date: Mon, 27 Feb 2006 15:40:21 -0800 (PST) From: Raj Aryan Subject: Re: Help Me--TYPO-3 Content Management System--Urgent Hi- Jeromie, You have told "If that's the case, you can set that flag via a .htaccess file for the affected directory/directories. This is a much better plan than enabling the flag server-wide." But in the install.txt file it was mentioned that- " When you have finished setting up TYPO3, and especially if your site is on a public server, for security you MUST... Either delete the /install folder, protect it using a .ht access file or at least change the install tool password". For that reason I have deleted that /install folder. But till now the given by default username and password is not going to be validate.....I have seen in the backend database that there username is admin but password is converted by html like from using md5() method....I am giving both username and password in text format...But at the end the outcoming result is nil....Then what I will do? Regards, Srikanta Biswas Jeromie Clark wrote: Hi - You'd probably have to post to their group for help specific to their project, but you might want to check to see if there are requirements for any "special" PHP configurations. I'm thinking specifically of PHP's register_globals flag, although there are a couple others that might affect older PHP projects: http://us3.php.net/register_globals If that's the case, you can set that flag via a .htaccess file for the affected directory/directories. This is a much better plan than enabling the flag server-wide. -Jeromie >Dear Group Members, > At that time I am facing a very critical problem regarding TYPO-3 content > management system in PHP....I > have downloaded all the packages from www.typo3.org for typo3 installation in > windows.....I have configured them > according to the Install.txt file inside this package....Installation is > complete, But whenever I am going to their Back end > Administration Area(BE) then the default username(admin) and > password(password) whats are given is not > validating.....How can I make TYPO-3 cms make active in my system?.....I need > Urgent Help....PLEASE help me. >Give me solution by steps...... > Regards, >Srikanta Biswas __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com [Non-text portions of this message have been removed] ________________________________________________________________________ ________________________________________________________________________ Message: 8 Date: Tue, 28 Feb 2006 11:19:10 +0700 From: Anggie Bratadinata Subject: Re: Re: pl/sql = oracle; _________ = mysql; > in mysql do someone have the ability to have procedures to do nifty > sql queries to interact with the client/user? If you use MySQL prior to version 5, then you can't do stored procedures as they don't support it. Otherwise, this tutorial might be useful : http://www.devshed.com/c/a/MySQL/A-DIY-Approach-to-Stored-Procedures-in-MySQL/ > p.s. > > in separate question: i have recently installed fedora core 4 and > have set up apache/postgre/mysql.. but when i issue http://localhost/ > in the web browser, it doesnt display anything... i dont know what > went wrong. i can do some changes with linux but this is my first > time using/setting up server. any comments? It's been a while since the last time I messed with Linux but IIRC you need to check your host configuration (try network configuration) and see if localhost 127.0.0.1 is listed. p.s. This is my first post to this group so I'd say Hello! to all of you. ;) HTH, -- Anggie Bratadinata Web|Graphic|Flash Jl. Raya Langsep 21 Malang - East Java I N D O N E S I A http://design.ibshastautama.com kray blue wrote: > thanks guys for the reply. > > what im really asking is: i know that pl/sql is the stored procedure > equivalent in sql server to oracle, in mysql do someone have the > ability to have procedures to do nifty sql queries to interact with > the client/user? > > i really try to explain well. sorry for the bad english.. =) > > regards, kray > > p.s. > > in separate question: i have recently installed fedora core 4 and > have set up apache/postgre/mysql.. but when i issue http://localhost/ > in the web browser, it doesnt display anything... i dont know what > went wrong. i can do some changes with linux but this is my first > time using/setting up server. any comments? thanks again. ________________________________________________________________________ ________________________________________________________________________ The php_mysql group is dedicated to learn more about the PHP/MySQL web database possibilities through group learning. ------------------------------------------------------------------------ Yahoo! Groups Links ------------------------------------------------------------------------ --------------------------------- Jiyo cricket on Yahoo! India cricket Yahoo! Messenger Mobile Stay in touch with your buddies all the time. [Non-text portions of this message have been removed] The php_mysql group is dedicated to learn more about the PHP/MySQL web database possibilities through group learning. Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/php_mysql/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
