0

I'm using Nginx Http Upload Progress Module(http://wiki.nginx.org/HttpUploadProgressModule) for my video upload page(upload.php). Everything works fine, but after the video uploaded successfully, the URL display:

upload-success.php?X-Progress-ID=9040ccc12eb610ecb0362d5312e1b2fa

For some reason, i want to hide:

?X-Progress-ID=9040ccc12eb610ecb0362d5312e1b2fa

I've tried passing "X-Progress-ID" via hidden input in the form but it still display in the URL:

<input type="hidden" id="X-Progress-ID" name="X-Progress-ID" />

Any idea?

1 Answer 1

1

My way

<?php
if(isset($_POST['file_name'])) {
    header("Location: /index.php");
    exit();
}
?>
Sign up to request clarification or add additional context in comments.

2 Comments

Thanks! you gave me an idea.
Btw. a bit out off topic, does your progress bar work? I can not figure it out. Here is my topic, maybe u could help me: stackoverflow.com/questions/17624731/…

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.