Opps
Sorry. You can store the varables in a PHP include file as well as a database. Ether solution is just as good (just with includes you will not have to install mySQL). Includes should be supported as standard in your PHP edition.
For an include put the following line at the top of the php code:-
include("nameOfInclude.php");
This will add the php code from that file onto the top of you pages code.
Then just add the varables you want keep globel (start and end of winter for instance) into the include file.
So the include file will look something like this=
<?php
$startWinter = '1245667';
$endWinter = '5684985';
?>
just save this in the same folder as the page it is being called from is.
The advantage is that all your varables you want over many pages are stored in one place.
Think thats it.......