I'm working in the index.php which calls various other bits in the theme. At the top, to randomize I declare...
srand((double)microtime()*1000000);
$randval = rand(0,1);
... inside <?php ?> section. If I want to use it later on in the same file, I can still call $randvall without having to declare srand again right?
Jbbrwcky