I'm new at this, sorry for my ignorance.
I have two php SQL queries that work just fine on their own:
INSERT INTO `table`.`lines` ( `id` , `raw_line` , `next_line` , `credit` , `timestamp` ) VALUES ( NULL , '$_POST[raw_line]', '', '$_POST[credit]', NOW( ) );; and
UPDATE `lines` SET `next_line` = CONCAT('When ', `raw_line`) I don't know how to combine/order the two in php so that the UPDATE processes automatically after the INSERT INTO. The INSERT INTO works but the UPDATE does not.
Thanks for any help!
Wherein yourUPDATEquery