Ok I tried a few things this being the last
<frameset framespacing="0" border="0" rows="120,*" frameborder="0">
<?php
$possiblities = array("header.html", "header2.html");
$head = $possibilities[rand(0,count($possibilites))];
$work_damnit = "<frame name="header" scrolling="no" noresize target="body" frame src="' . $head . '" marginwidth="4" marginheight="4">";
echo $work_damnit
?>
<frame name="body" scrolling="auto" frame src="body.html" target="_self">
I removed the period before the = & then after that didnt work I tried to change from single quotes to double around the html line...
this looks ok... frameset then the header then the body... but the end result is frame set ignore php body... 🙁 forgive me as I'm VERY tired & quite late for bed but is there any way to spit the $work_damnit variable out to see the final product? I'm just curious once it passes that is it ignoring the php or does the body go in the header place because what is echo'd is malformed in a way it does nto see it as a page assignment.
Thanks,
- SHED