Forum Moderators: open

Message Too Old, No Replies

Insert Into Multiple Tables

         

tsinc

7:57 pm on May 31, 2007 (gmt 0)

10+ Year Member



Hi, my first post here after reading the forums for a bit I decided to join and get some help :D

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!

barns101

9:43 pm on May 31, 2007 (gmt 0)

10+ Year Member



Welcome to WebmasterWorld.

I think you'll need to use three separate INSERT queries.