Jump to content

Frames Won't Display??


Jamesking56

Recommended Posts

I made a simple HTML Frames thing to have a sidebar then links that open in a "Main" area,But, when I echo it in PHP it doesn't display?Do I need a certain extension on or something? for some reason I get a blank page??HELP?? :)

Link to comment
Share on other sites

Why not just do it without PHP? How are you trying to generate it with PHP?
Because I am including files and making it generate stuff whether users are logged in or not,But, I echo out the Frame Coding and it doesn't display?Why doesn't it Display?
Link to comment
Share on other sites

I mean this:

<html><head></head><body>FRAME CODE</body></html>

See the Top one is WRONGBottom one is right:

<html><head>FRAME CODE</head><body></body></html>

see?

Link to comment
Share on other sites

... All I see is that you didn't answer my question at all. What is "FRAME CODE"?These are wrong:

<html>	<head>		<frameset>			<!-- yada yada -->		</frameset>	</head>	<body>			</body></html>

<html>	<head>			</head>	<body>		<frameset>			<!-- yada yada -->		</frameset>	</body></html>

And this is right:

<html>	<head>			</head>	<frameset>		<!-- yada yada -->	</frameset></html>

Link to comment
Share on other sites

Good point... And don't use frames unless they're absolutely necessary.Sorry I was cross earlier... I want precise communication, and that often gets me frustrated.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...