PHP Tutorial

A web server programming language.

MySQL Insert Data

MySQL Insert Data Using PHP

After a database and a table have been created, we can start adding data in them.

Here are some syntax rules to follow:

  • The SQL query must be quoted in PHP
  • String values inside the SQL query must be quoted
  • Numeric values must not be quoted
  • The word NULL must not be quoted

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics