Say I have a table name auto_parts with these fields. id, part, price, timestamp and I insert a new row via php as so:
id, part, price, timestamp
$query = \"insert into auto_p
$query = "insert into auto_parts(id, part, price, timestamp) values(1, 'axle', 200, 'NOW()')" mysql_query($query);