[PHP]
<?php
$guts = "index";
if (isset($HTTP_GET_VARS['setguts'])) {
$guts = $HTTP_GET_VARS['setguts'];
setcookie("guts",$guts,time() + 31536000,"/",".domain.com",0);
}
if (isset($HTTP_COOKIE_VARS["guts"])) {
$guts = $HTTP_COOKIE_VARS["guts"];
}
if (isset($HTTP_GET_VARS['guts'])) {
$guts = $HTTP_GET_VARS['guts'];
}
?>
[/PHP]
I'm getting the following error:
Parse error: parse error, unexpected ',' in /home/aqua-sol/public_html/yeah.php on line 48
there is nothing on line 48 that could possibly be causing the problem.