Quote Originally Posted by vineesh View Post
Can somebody explain this portion of the script ?

Code:
setcookie('phpExpertName', $_POST['phpExpertName'], time()+3600);
Why phpExpertName and $_POST['phpExpertName'] mentioned together ?
That is how cookie is set. First phpExpertName is name of the cookie. $_POST['phpExpertName'] is the data PHP get when user submit HTML form page using POST method.