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?

Link to comment
Share on other sites

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.

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.