Cookies Enabled/Disabled
Posted: Fri Jun 02, 2006 2:45 pm
How can I make it so that if cookies are enabled it displays the HTML on the page, and if not it just displays a message like "Cookies must be enabled".
Code: Select all
<?php
//Cookie Check --- I could just help on that
if (!$check_cookie){
?>
HTML FOR ERR MESSAGE
<?php
} else {
?>
HTML FOR PAGE
<?php
}
?>