Re: PHP form to mySQL

2002-08-12 Thread nick gatsis
Check some articles in http://www.devshed.com/Server_Side/MySQL, http://www.devshed.com/Server_Side/PHP --- JeRRy [EMAIL PROTECTED] : Hi, I am trying to setup a PHP form to send to mySQL database. I know how to connect to mySQL but need help getting the information in the form to

PHP form to mySQL

2002-08-10 Thread JeRRy
Hi, I am trying to setup a PHP form to send to mySQL database. I know how to connect to mySQL but need help getting the information in the form to update into the mySQL database. I have the following table called contacts, I'd like the form to have the following fields. firstName lastName

Re: PHP form to mySQL

2002-08-10 Thread Jed Verity
Hi, Jerry, Here's your simplified form: form action=addcontacts.php method=post input name=firstName type=text input name=lastName type=text input name=email type=text /form Here is the page addcontacts.php: html body ? if ($REQUEST_METHOD == POST) { $usr =