The INSERT INTO statement is using to insert new records in a table.
INSERT INTO table_name (column1, column2, column3,…)
VALUES (value1, value2, value3,…)
OR
INSERT INTO table_name
VALUES (value1, value2, value3,…)
<?php
?>
- Connection to the MySQL Server using PHP
- Create Database using MySQL and PHP
- Create a Table using MySQL and PHP
- Insert Data Into a Database Table using MySQL and PHP
- Select Data From a Database Table using MySQL and PHP
- MySQL WHERE clause is used to filter records
- PHP MySQL ORDER BY Keyword
- Update Data In a Database using PHP and MySQL
- Delete Data In a Database using PHP and MySQL