Its pretty ugly I guess, and i dont know if t works, but why not:
- set a cookie
- redirect to self
- check if the cookie is set
- if not: not supported
if set: supported
Youd have to figure it out, somethin like:
<?php
if ($test){
if ($testcookie) {
echo "Cookies work";
}
else {
echo "Cookies not supported";
}
}
else {
setcookie("testcookie","testcookie");
header("location:thispage.php?test=1");
}
?>
Thats all.
Good luck,
Robin