hi,
is it possible to use mysql_insert_id() like i wanna use it?? 🙂
i want to insert some values into two different tables with the same id and on ONE PAGE! Is it possible to have something like that?
$slq1 = "INSERT INTO ..... VALUES ........."
$id = mysql_insert_id()
$sql2 = "INSERT INTO ..... VALUES ....$id...."
Is PHP able to use it one the same page or do i have to use it on the next page as a $_POST["id"]?
I hope some of you understood what i'm looking for 😉
Greetings,
MaXx