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)");
Example:
mysql_query("INSERT INTO table_name(colum1,colum2,colum3)
VALUES (value1, value2, value3)");
No comments:
Post a Comment