Log in

View Full Version : renaming $


pie
03-08-2004, 10:18 AM
$sql = "SELECT count(*) FROM uploadimages";
$sql2 = mysql_query($sql);
$id2 = mysql_result($sql2);
$id = $id2 + 1;
-----

This is not for mysql... though there is a mysql_query later using auto_increment.

^^ As i said though its for variable

Dean C
03-08-2004, 11:53 AM
What's the problem - not quite following as you haven't said what problem you're encountering or what you're trying to do :)

pie
03-08-2004, 12:24 PM
Basically...

it renames the file dependant on an id.... its easily added due to mysql's auto increment, but i want to rename the file before hand, so i want a query getting latest id
then when done ill add a 1.

Dean C
03-08-2004, 03:16 PM
You mean for example when you add something to the database you want to get the id that was just created assosciated with that record? If so use mysql_insert_id :)