A simple PHP download script

0 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 create a subfolder names "files".
Place your files there.
And edit the filepaths in the PHP script.
You can add more and delete some.

You can also place a htaccess file to deny all acess to the file from outside.
And you can also place the filefolder (I think) outside the www-root.

Yeah, you might need a programmer to change this if you can't yourself.
This is just a easy solution I made.

Code:
<?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

Trending Topics