Jump to content

[SOLVED] capture Autonumber id


otuatail

Recommended Posts

Yes there is, I believe this is how you do it but this is only off the top of my head.

 

<?php
$query= "...";
$result = mysql_query($query);
$insert_id = mysql_insert_id($result);
// Now you can use $insert_id for your second query...

$query2 = "INSERT INTO `...` (id, something, somethingelse) VALUES ('{$insert_id}', 'value', 'another value')";
$result2 = mysql_query($query2);
// ...
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.