I cannot send a cookie using setcookie. I'm using Win2000 en PHP version 4.2.3. The same code is working perfect on my Windows XP machine and Linux server.
The code:
//Get data from mySQL db
$cookieData = $data->userFirstName . " " . $data->userLastName;
//Set cookie
setcookie("username",$cookieData,0,"/");