PDA

View Full Version : submit info from form into database


queenb
7-13-04, 10:46 AM
hey guys i need your help i have created my forms now i want to submit what i enter in the forms to some tables in the mysql database please help how do i do that?

BerksWebGuy
7-13-04, 10:52 AM
You could do it like this:

mysql_query("INSERT INTO table_name (column1, column2 , column3) VALUES ('$string1', '$string2', '$string3')")