Using .htaccess 












Using .htaccess/.htpasswd Password Protection 


php5
php5
Coding Tips 






Uploads and Downloads 

php5
php5
php5
Mail 



php5


Working with Images 


Frequently Requested Website Functionality 
php5
php5

php5 see it on this page
php5








Using PHP 
php5
php5
php5


Website Managment 







php5

php5
Other Tips 







Custom Download Page
You can use the script below to create a custom directory list page. This is a basic script that can be customized to achieve the look you want. The script will automatically generate and link list of all the files in the directory that are of the types specified in the array variable, and only those file types. Populate the array with file types in lower case only, the script will match case insensitive. This is a good companion script to the File Upload Upload script on this page.
<?php
$type = array(".jpg",".gif",".txt");
$dir = "./";
foreach(scandir($dir) as $file) {
if (in_array(strtolower(strstr($file, '.')), $type)) echo "<a href='$file'>$file</a><br>";
}
?>