Search This Blog

Tuesday, 20 January 2015

Insert data in database using PHP.

The INSERT INTO statement is used to add new records to a database table.



Example:

mysql_query("INSERT INTO table_name(colum1,colum2,colum3)

VALUES (value1, value2, value3)");

No comments:

Post a Comment