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 







Get the most recent file date
When you need that most recent update date. You can use this script to get the most recent file date in a given directory. To use current directory, use "./" as the directory name.
<?PHP
$path = "./"; // put the directory path here
foreach (glob($path) as $filename) if (filemtime($filename) >= $recentDate) $recentDate = filemtime($filename);
$recentDate = date(" F d, Y",$recentDate);
echo $recentDate;
?>