|
Posted by dorayme on April 24, 2008, 12:56 am
Please log in for more thread options
> Petr Vileta wrote:
>
> > But back to IT world. Maybe author of question not have access to use
> > server side solution,
>
> Server side was rare and expensive in 1990s not common and cheap
>
> > maybe he not have knowledge to do it,
>
> Tutorials up the "wazoo"
>
>
> http://www.google.com/search?hl=en&q=php+tutorials&btnG=Search
> php tutorials - Google Search
>
> > maybe a
> > pages are too simple to solve it in other way then frames.
>
> <frameset cols = "25%,*">
> <frame src ="menu.htm" />
> <frame src ="content.htm" />
> </frameset>
>
> vs
>
> <?php include_once('menu.htm'); ?>
> <div id="content">
> <p>This page's content....
I just love how folks fail to address the fact that frames keeps the
menu from scrolling away in a natural manner. You can't simply say use
includes and walk away!
--
dorayme
|