Minggu, 10 Januari 2010

PHP : TEST COOKIE

/*
$tes_cookie="tes browser";
if ($er != $tes_cookie)
{
setcookie("cookieku",$tes_cookie);
header("Location:$PHP_SELF?$tes_cookie);
}

if ($cookieku==$tes_cookie)
{
print "browser Anda mendukung";
}
else
{
print "browser anda tidak mendukung";
}
*/

$status=0;
if (isset($cookieku) && ($cookieku == "cooki")) { $status = 1;
if (!isset($cek)) {
setcookie("cookieku", "cooki");
header("location: $PHP_SELF?cek=1");
exit;
}
}

printf ('%s
',
$status ? "000000" : "FF0000",
$status ? "Browser Anda mendukung cookie" : "Browser anda tidak support cookie");

?>

Tidak ada komentar: