|
Posted by Janwillem Borleffs on 09/28/55 11:45
- Dazed wrote:
> setcookie("CSS_COLOR", $color, $colorcookietime, "$cookiepath");
> header("Location: $url");
>
setcookie("CSS_COLOR", $_GET['color'], $colorcookietime, $cookiepath);
header("Location: {$_GET['url']}");
Might not solve the problem, but at least gets rid of the deprecated
register_globals dependency...
JW
[Back to original message]
|