I have a table with an autoincrement id field. How do I update that field in PHP?
In Perl, I used "INSERT INTO table (id, field1,field2....) VALUES ('0', '$field1','$field2'...)"
In PHP, using the '0' gives me exactly that...a zero.
What do I substitute for the 0 in a PHP script?