I am trying to create cookie within a function like this:
function cookiemaker($value)
{
setcookie ("Test",$value);
}
$value ="yammy cookies";
cookiemaker($value);
problem is that cookie never get created, i don't get any error message either.
please help.. many thanks in advance