Jump to content

insert file name as +1 grater than last ID


erdem

Recommended Posts

hi guys.

 

I hope I can explain.

 

I'm uploading file and I'm inserting some info from the file into mysql.

 

I want to rename the file grater then my latest file ID.

 

so i did this.

 

mysql_query("INSERT INTO replay (ReplayID, Version, Map, GameLenght, TeamSize, Realm, PlayedTime, Location, Uploaded) VALUES 
                                (NULL, '".$Version."', '".$Map."', '".$GameLenght."', '".$TeamSize."', '".$Realm."', '".$PlayedTime."', '".$FileName."','".time()."')")or mysql_error();
                 
                $FileName = mysql_insert_id().'.SC2Replay';               
                move_uploaded_file($tmpname,"Replays/" . $FileName);

 

as you can understand in the database Location is empty.

 

how can I do this?

how can I do this?

 

Put a NULL in that field during the insert, then after you get the ID and move the file run an UPDATE which changes it to the actual value.

 

Why not define it before the query?

 

Because he has to run the query before he can get the insert id that is used to generate the file name.

 

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.