Jump to content

PHP Prevent Form Submit Twice


Gamerz

Recommended Posts

Hey,

I currently have a file uploader.

 

I want to prevent a user from uploading the same files two times by making the page expire.

 

My uploader is currently running on ONE script. The form and the processing page is all in one script. Not two, but one.

 

And no, I don't want to use the location header redirection to prevent the user from uploading twice, because then, how is the user going to be able to know there file url?

 

I just want the page to expire once the upload is completed.

Link to comment
Share on other sites

You could always use header('Location: '); and pass the url of their file in the query-string to get and display on a success page.

 

eg. header('Location: success.php?file=' . $file_url);

 

Then on success.php put something like:

if(isset($_GET['file']))
{
     echo "Your file was successfully uploaded! URL: " . $_GET['file'];
}

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.