I am needing help with this, please. I had the same problem with HTML then I was able to solve it. Very complicated and hard to explain. So, I'm going to ask something that I want to make sure I am doing this correctly. If I am right, PHP and HTML do not set up frames the same way. As for this PHP codings, the frame loads up fine, but there is a problem that is hard to explain. First, I want to know if I am doing the codings correctly? This is a PHP page that calls up the framesets.
It loads up the room just fine, but when opening a table, it wont. It has somethig to do with the frame calling, etc. Hard to explain. I just want to know if I am doing this framesets correctly.
It loads up the room just fine, but when opening a table, it wont. It has somethig to do with the frame calling, etc. Hard to explain. I just want to know if I am doing this framesets correctly.
Code:
<html> <head> <title>The Title</title> <?php extract($HTTP_GET_VARS); extract($HTTP_POST_VARS); echo"<frameset rows='1,1,1,*' frameborder=0 border=0 framespacing=0>"; echo"<frame name='ad_space' src='LINK' marginwidth='2' marginheight='2' scrolling='no' frameborder='0' border='0' framespacing='0'>"; echo"<frame name='games_logo' src='LINK' marginwidth='5' marginheight='0' scrolling='no' frameborder='0' border='0' framespacing='0'>"; echo"<frame name='yog_$room' src='LINK' marginwidth='0' marginheight='0' scrolling='no' frameborder='0' border='0' framespacing='0'>"; echo"<frame name='yog_applet_$room' src='LINK' marginwidth='0' marginheight='0' scrolling='no' frameborder='0' noresize>"; echo"</frameset>"; echo"<script language='javascript'>window.name='yog_ante_$room';</script>"; ?> </head> <body> </body> </html>