<?php

/*
    php code to set a one-time daily notice.
    for use with the Pure CSS Drop-Down Info-Bar, or whatever you like.

    cor + corz.org ;o)

*/

// this is a flag which will be checked in the footer.
// if set to true, we will print out the site notice..
$site_config['do_notice'] = false;

// check for existence of cookie..
if (empty($_COOKIE['notice'])) {

    
// set the notice flag..
    
$site_config['do_notice'] = true;

    
// set the cookie..
    
setcookie ('notice''seen'time() + (60*60*24), '/'); // 24 hours
}

?>
back to the source menu
test

Welcome to corz.org!

I'm always messing around with the back-end.. See a bug? Wait a minute and try again. Still see a bug? Mail Me!