Using .htaccess 












Using .htaccess/.htpasswd Password Protection 





Coding Tips 








Uploads and Downloads 



Mail 
see it on this page





Working with Images 


Frequently Requested Website Functionality 
see it on this page

see it on this page
see it on this page
see it on this page











Using PHP 




Website Managment 








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;
?>




