PDA

View Full Version : Frames --> convert to PHP/CSS



LVZ
05-15-2004, 05:38 AM
I have a few sites that for different reasons I have used FRAMES (I know, everybody hates them) for increased security and ease of use. However, I have decided that the downside, particularly browser incompatibilities, is no longer worth it and I want to make PHP/CSS pseudo-frames.

Coming from the 'C' programming world, I really like PHP. So as not to reinvent the world, can someone refer me to good sites for educating myself about good techniques for making PHP/CSS pseudo-frames that will maintain most of the capabilities of normal HTML frames?

Bob from Las Vegas

P.S. Here are a few framed sites I want to convert:

http://las-vegas-shopping.net
http://www.itvFan.com (click green button)
http://www.vegasxyz.com

Corey Bryant
05-17-2004, 12:17 AM
Have you checked out: http://www.w3schools.com/css/

But I am not too certain what you mean by pseudo-frames?

LVZ
05-17-2004, 07:35 AM
The functionality of HTML FRAMES expressed via PHP coding instead.

Corey Bryant
05-17-2004, 08:42 AM
Meaning that the nav stays the same? You do not even have to use PHP actually if this is what you are speaking about. You can use SSI by renaming the files to shtml and adding a code:


to insert another page.

But if you want to use PHP:

<?php
include ("header.php");
?>

I think that is the correct code. I do not use PHP all that much.