i have two table in my mysql DB and when i add a new post(by php) a new row is created in it:
-Post(ID,title,body)
-pictures(id,id_post,path_picture)
how could i achieve to pass the _post ID_ to the relative __pictures id_post__ ?
thanks
Luca
|
|
|
After you insert the post you can call |
|||
|
|
|
You can't insert into two tables using DML anyway. To readback the insert_id assigned, perform the insert then call mysql_insert_id() If you don't want to poll the insert_id from your PHP code, then you'll need to create a stored procedure. |
|||
|
|
|
Depending on what database library you use you can find out the id of the inserted row. For example with the mysql library that PHP provides you run mysql_insert_id() right after the query to insert the post is run. http://php.net/manual/en/function.mysql-insert-id.php
|
|||
|
|