Forum Moderators: open
The PHP code generates the proper frameset HTML.
Here is my code, simplified from the original. The specific offsets 4 and 6 may not work for you. The variables $IE, etc., indicate what kind of browser is running.
<?php
$width = 199;
$height = 129;
if ($IE ¦¦ $NS6 ¦¦ $OP)
$width = $width - 4;
if ($IE ¦¦ $OP)
$height = $height - 6;
?>
...
<frameset id=Frameset1 rows="<?=$height?>,*">
...
David
(edited by: tedster at 10:57 pm (utc) on Mar. 25, 2002)