Wondering if there is a shorthand version to insert a new record into a table that has the primary key enabled? (i.e. not having to include the key column in the query) Lets say the key column is called ID, and the other columns are Fname, Lname, and Website
$query = "INSERT INTO myTable VALUES ('Fname', 'Lname', 'Website')";
You can also use blank single quotes for the auto_increment column. something like this. It worked for me.
Use the DEFAULT keyword:
Also, you can specify the columns, (which is better practice):
Reference:
I prefer this syntaxis:
Just leaving the value of the AI primary key
NULL
will assign an auto incremented value.This is phpMyAdmin method.