How to use Drupal theme variables?

Add the following codes into themplt.php

<?php
yourthemename_preprocess_page(&$variables) {
$variables['happyday'] = 'Happy ' . format_date(time(), 'custom', 'l') . '!';
}
?>
And display the variables in page.tpl.php:
<?php
print $happyday;
?>