Hi guys

Can I use HTML Frames with PHP?

I presumed I can do this by..

<?php
    session_start();
    require("auth.php");
    require("do_html_header.php");
    if($_SESSION['SESS_admin'] == 0)
        require("do_menu.php");
    else
        require("do_menu3.php");

    do_html_header();
    print"<h1>Welcome ". $_SESSION['SESS_FIRST_NAME']."!</h1>";
    do_menu();
?>
</body>

<frameset rows="50%,50%">
  <frame noresize="noresize" src="limits.php" />
  <frame noresize="noresize" src="limits.php" />
</frameset>

</html>

I have put it everywhere but it seems not to show up..

<frameset rows="50%,50%">
<frame noresize="noresize" src="limits.php" />
<frame noresize="noresize" src="limits.php" />
</frameset>

this code is perfectly fine...

check your limits.php whether there is any error...
execute this page individually in your browser.

thanks

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.