Topic: Test from stefan
Hi,
I want to like this forum.
function writeCookie($name, $val, $time = null, $key = null){
$time = is_null($time) ? $GLOBALS['cookieLife'] : $time;
$key = is_null($key) ? $GLOBALS['encryptKey'] : $key;
$val = gzcompress(serialize($val) . $key);
$val = urlencode(base64_encode($val)); I wonder what will happen.
Stefan