Forum Moderators: open
I have all this data that is stored in sessions but I need to insert it into the database.
Normally I would use
INSERT INTO table1 (value1,value2,value3) VALUES ($_SESSION['value1'],$_SESSION['value2'], $_SESSION['value3']
That works fine if I am only INSERTING into 1 table.
But I need to insert data into 3 tables, how can I do this?
Thanks alot!