PDA

View Full Version : how to create perm iframe?


GigaSb
06-25-2008, 06:06 PM
hello, i want to make iframe (to some page)

when a user enter my website i want the iframe to be activated (and stay) without refreshing the iframe all the time (when moving pages)

how can i do it ?

KatieG
06-25-2008, 10:08 PM
If I understand you correctly , try this as your say index page and call the page you require

<html>
<head>
<title>No title</title>
</head>
<frameset rows="100%" cols="1*">
<frame name="main" scrolling="auto" marginwidth="0" marginheight="0" src="your_page.php">
<noframes>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<p>To view this page correctly, you need a Web browser that supports frames.</p>
</body>
</noframes>
</frameset>
</html>

GigaSb
06-26-2008, 07:35 AM
thanks for replay.

i want the iframe will be invisible & integrated in the index.php of the forum