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 









Using Cookies
This script shows an example of how to use a cookie. It reads and sets a cookie value that can be used to track visits by a specific individual (PC/browser). The parameters are:
<?php
$cookieCount = 0;
if (isset($_COOKIE['visitcount'])) $cookieCount = $_COOKIE['visitcount'];
$cookieCount++;
setcookie("visitcount",$cookieCount,time()+60*60*24*180,'/','.yourdomain.com');
if ($cookieCount > 1) echo "Welcome back. You have been here $cookieCount times.";
?>
