PHP, IE6 IFRAME Problem. Help me!

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
chigumbuk
Forum Newbie
Posts: 1
Joined: Fri Nov 10, 2006 3:09 am

PHP, IE6 IFRAME Problem. Help me!

Post by chigumbuk »

The following code works well with firefox web-browser, but it gives a blank page in IE6.
<iframe src="http://intranet/she/she.php"
frameborder='0' marginheight='0' marginwidth='0'></iframe>

however the following works in both in firefox and IE6.

<iframe src='http://intranet/directory/tel.html'
frameborder='0' marginheight='0' marginwidth='0'></iframe>

I wish to use the IFRAMES with php in IE6. Where am I missing it. Can php work with IFRAME or its the html files that work with IFRAME only. 8O
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

What is "she.php" sending? Does it work when called directly?
User avatar
RobertGonzalez
Site Administrator
Posts: 14293
Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA

Post by RobertGonzalez »

PHP is a server-side technology. That means by the time the browser sees what PHP has done, it is just the same as static HTML. I would bet there is something in the PHP code that might be doing this to you. In fact, I think aaronhall had a similar issue that he posted today. You should search for his username and see what he has posted.

Also, to be sure, try loading the source file 'she.php' directly into the IE browser to see if it loads without being in an iFrame.
Post Reply