A simple PHP download script

1 replies
In this PHP script you have to write in a 3 letter code (can easily be changed).
And click the submit button.
The PHP script will send the requst to the right file by a PHP redirection to download the right file.

To use it have a subfolder names "files".
Plase your files there.
And edit the filepaths in the PHP script.

You can also place a .htaccess file in the files folder to deny all acess to the files from outside.
And you can also place the filefolder (I think) outside the www-root.
Just copy and paste the code below to a empty php file (*.php).
Or place it between the <body> and </body> tags.

<?php

$code = $_POST['code'];

if ( $code == "rtf" ) {
header( 'Location: files/code.rtf' ) ;
}

if ( $code == "odt" ) {
header( 'Location: files/code.odt' ) ;
}

if ( $code == "pdf" ) {
header( 'Location: files/code.pdf' ) ;
}

?>

<p>You can choose to download a file.<br />
Choose between 3 file extentions.<br />
Type in the following 3 letter word in <strong>bold</strong> that is either <strong>rtf</strong>, <strong>odt</strong> or <strong>pdf<br />
</strong>This will send a request to the right filetype . </p>
<form name="dl-form" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<input type="text" name="code">
<input type="submit" name="Submit" value="Submit">
</form>
#download #php #script #simple
  • Profile picture of the author milo_pl
    Sth wrong with your connection - you've posted 3 threads with the same title...
    {{ DiscussionBoard.errors[1551093].message }}

Trending Topics