i have made a page with some of those boring legal stuff
and of course, as ususal, there is this agree and disagree button.
when click aggree, user can download the file they want.
this will take them to another page (file.php),
which will fetch the downloaded file's url from a database.
of course, the page will first detect if user has click btn_agree
using (isset($_POST['btn_agree']))
now, how do i make it so after the location has been fetch,
it then prompt the user the SAVE/Download Dialog,
while simultaneously change the current page to another page..
the main reason is to hide the file's location (URL)
so it cannot be downloaded directly..
any idea how i can do this?