Click to See Complete Forum and Search --> : onLoad call another page


tripwater
04-28-2003, 09:04 AM
Hello I am using php on my site and I have been testing 3 different browsers (IE6, Netscape 6.2, Mozilla 1.01) It has been brought to my attention that my site does not pull up in older versions of Netscape.

The issue I belive is because on the index.html page I am using this code:


<frameset frameborder="0" rows="*">

<frame src="main/maindata.php" Title=" Calls HomePage" marginwidth=0>

</frameset>


and it opens my homepage (maindata.php) when it loads. I have pages that are included into maindata for use (style sheets, function calls). I do not know if I am confusing or giving too much info for the problem at hand.... but I believe the problem is the frameset. The site pulls up fine for the above mentioned browsers I have tested on but pulls up nothing in Netscape 4.

Would it be better for me to just take index.html and onload call maindata.php? If so how do I accomplish this?

Thank you for any help.

khalidali63
04-28-2003, 09:13 AM
Try using it like this

<frameset rows="*,100%">
<frame name="top" src="" marginwidth="10" marginheight="10" scrolling="auto" frameborder="0">
<frame name="bot" main/maindata.php" Title=" Calls HomePage" marginwidth=0>
</frameset>

tripwater
04-28-2003, 10:48 AM
thank you

khalidali63
04-28-2003, 10:56 AM
:D
You are welcome...