Anyone see ANYTHING wrong with the following code:
if($_POST['remember'] == 'yes')
{
setcookie("username", $_POST['username'], time()+604800, '', $cookie_domain);
setcookie("password", $_POST['password'], time()+604800, '', $cookie_domain);
}
$cookie_domain = 'allescorts.us';
Should I use double quotes instead?