0
3.9kviews
Write a PHP Program to insert a record into MYSQL database.
1 Answer
0
146views

PHP Program to insert a record into MYSQL Database

  • The INSERT INTO statement is used to add new records to a MySQL table: INSERT INTO table_name (column1, column2, column3,...) VALUES (value1, value2, value3,...)
  • Following program create table named "MyGuests" with five columns: "id", "firstname", "lastname", "email" and "reg_date"; -
  • Then …

Create a free account to keep reading this post.

and 2 others joined a min ago.

Please log in to add an answer.