Click here to Skip to main content
15,884,298 members
Please Sign up or sign in to vote.
2.00/5 (2 votes)
See more:
hi all,

I have design a simple page with three frames as follows. Issue is only the content of the top frame is displayed but not the others. Any comment really appreciate.

HTML
<frameset rows="100,*" frameborder="0" border="0" framespacing="0">
    <frame name="topNav" src="top.htm">
        <frameset cols="200,*" frameborder="0" border="0" framespacing="0">
            <frame name="menu" src="menu.php" marginheight="0" marginwidth="0" scrolling="auto" noresize>
                <frame name="content" src="content.php" marginheight="0" marginwidth="0" scrolling="auto" noresize>
                    <noframes>
                        <p></p>
                    </noframes>
        </frameset>
</frameset>



I figured it out that the issue rises only with php pages, not with htm or html
Posted
Updated 13-Aug-12 3:36am
v2
Comments
Christian Amado 13-Aug-12 17:27pm    
Why you use frames? It's deprecated.

1 solution

Are you sure the issue is not content.php itself not returning anything ?
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900