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 







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