hello
please how can import just one SCROLLING for all page same this
how

<html>
<frameset  NORESIZE SCROLLING=yes rows="33%,60%">

<frame  SCROLLING=no NORESIZE src="bannar.php" name="up">

<frameset FRAMEBORDER=NO  cols="10%,80%,10%">

<frame   NORESIZE src="" >
<frame   SCROLLING=no NORESIZE  src="home.php" name="down" >
<frame    NORESIZE src="accounts_page.php" name="account" >






</frameset>


</frameset>
</html>

please help me

Recommended Answers

All 4 Replies

First, I'm wondering why you're using frames? If you're wanting to have consistent banner and navigation portions of the page without having to write it into each page, just use php's include_once() statement. You're page (say index.php) may then look something like this:

<html>
<div style="width:1000px;margin:auto;border:1px solid black;">
    <div><?php include_once('banner.php'); ?>&nbsp;</div>
    <table style="border-collapse:collapse;">
        <tr><td style="padding:0px;width:100px;border:1px solid black;">&nbsp;</td>
            <td style="padding:0px;width:800px;border:1px solid black;"><?php include_once('home.php');?></td>
            <td style="padding:0px;width:100px;border:1px solid black;"><?php include_once('accounts_page.php');?></td>
        </tr>
    </table>
</div>
    </html>

thank you ,,

i will try

it's work but not fixed :""(

Member Avatar for diafol

Using divs (or html5 equivalent bits) along with CSS should be the way to go. I would avoid producing layout with tables and frames.

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.