Get Inserted ID Number
<?php
// Insert into database
mysql_query("INSERT INTO my_table (`column1`, `column2`) VALUES (‘one’, ‘two’)");
// Next Get what the auto incremented number was that was inserted
$id = mysql_inser
Comments are closed.
<?php
// Insert into database
mysql_query("INSERT INTO my_table (`column1`, `column2`) VALUES (‘one’, ‘two’)");
// Next Get what the auto incremented number was that was inserted
$id = mysql_inser