My cookies are not being set....can any one assist me?
Here is the code.
// SET SESSIONS FOR BRANDS AND MODELS IF NECESSARY
if ($theGetBrand!=0) {
$_SESSION['mysite']['brand'] = $theGetBrand;
setcookie('mysite[brand]', $theGetBrand, time()+36002460,'/','mysite.com',0);
};
if ($theGetModel!=0) {
$_SESSION['mysite']['model'] = $theGetModel;
setcookie('mysite[model]', $theGetModel, time()+36002460,'/','mysite.com',0);
};
I set the cookie for later visits to the site...the session is for use on the following pages. The sessions work great...but the cookies are not being set.
Thanks in advance.