Does anyone know why my IFrame tag in a .php file, even though the height and width are set to 100%, keeps reverting to 100 pixels high when the window is resized?
here's the URL
http://dev.coreworldstech.com/forums.php
and here's the source
<?php
/*********************************************************************/
/ PHP-NUKE: Web Portal System /
/ =========================== /
/ /
/ Copyright (c) 2001 by Francisco Burzi (fbc@mandrakesoft.com) /
/ http://phpnuke.org /
/ /
/ This program is free software. You can redistribute it and/or modify /
/ it under the terms of the GNU General Public License as published by /
/ the Free Software Foundation; either version 2 of the License. /
/*********************************************************************/
if (!IsSet($mainfile)) { include ('mainfile.php'); }
include("header.php");
$result = mysql_query("select topicid, topicname, topicimage, topictext from $prefix"._topics." order by topicname");
if (mysql_num_rows($result)==0) {
include("header.php");
include("footer.php");
}
echo "<iframe src=http://dev.coreworldstech.com/phpBB/index.php height=100% width=100% frameborder=0></iframe>";
include("footer.php");
?>
Thanks,
Dev Sibwarra