Frameset is deprecadet. Move to iFrames.

This commit is contained in:
lopar
2019-01-10 00:01:36 +02:00
parent 41701d2225
commit 926e07e5e0
2 changed files with 33 additions and 13 deletions

View File

@@ -33,12 +33,32 @@ db::c()->query('UPDATE `users` SET `enter_game` = 0 WHERE `enter_game` = 1 AND `
}
}
</script>
<style>
IFRAME.FRAME {
width: 100%;
height: 100%;
border: 0 solid;
}
</style>
</head>
<frameset rows="25, *" frameborder=0>
<frame src="top_menu.php" scrolling="no" noresize style="border-bottom: 1px solid silver;">
<frameset rows="75%, *">
<frame name="main" src="main.php?top=<?= mt_rand() ?>" style="border-bottom: 1px solid silver;">
<frame id="chat" name="chat" src="chat.php" scrolling="yes">
</frameset>
</frameset>
<body>
<table style="height:100%;width:100%; position: absolute; top: 0; bottom: 0; left: 0; right: 0; border: 0 solid">
<tr style="height: 25px;">
<td><iframe id="header<?= mt_rand() ?>" class="FRAME" src="top_menu.php" scrolling="no" frameborder="0" name="frameheader"></iframe></td>
</tr>
<tr style="height: 100%;">
<td><iframe id="main<?= mt_rand() ?>" class="FRAME" src="main.php?top=<?= mt_rand() ?>" frameborder="0" name="framemain"></iframe></td>
</tr>
<tr>
<td><iframe id="chat<?= mt_rand() ?>" class="FRAME" src="chat.php" frameborder="0" name="framechat"></iframe></td>
</tr>
</table>
</body>
<!--<frameset rows="25, *" frameborder=0>-->
<!-- <frame src="top_menu.php" scrolling="no" noresize style="border-bottom: 1px solid silver;">-->
<!-- <frameset rows="75%, *">-->
<!-- <frame name="main" src="main.php?top=--><?//= mt_rand() ?><!--" style="border-bottom: 1px solid silver;">-->
<!-- <frame id="chat" name="chat" src="chat.php" scrolling="yes">-->
<!-- </frameset>-->
<!--</frameset>-->
</html>