Hi,
I trying to work out how i could set a cookie to a simple form, basically, being that if a cookie was not set then allow the user access to a form, else access is not given, e.g...
if( cookie is set){
// sorry you have been on this page recently
}else{
//show form
}
How do i go about setting the cookie for say 2 mins?
and how do i find out whether the cookie has been set or not?
Thanks for any help or pointers you may give...