Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

THE PROBLEM

I am attempting to create an AJAX style photo upload by directing the action (a php page) of a html form to a target (an iframe). The below example works flawlessly in Google Chrome & Firefox, however in Internet Explorer (im using IE 8) the php echo doesn't display in the html iframe. The iframe remains empty.

THE HTML

`<iframe name=myTarget>< /iframe>  
<form method=post enctype=multipart/form-data action=upload.php target=myTarget >  
<input type=file name=filename />  
<input type=submit />  
</form>`

THE PHP

`<?php  
move_uploaded_file($_FILES['filename']['tmp_name'], $filename);  
echo $iframe_html = "   
<!DOCTYPE html>  
<html>  
<head>  
<link href=css/style.css rel=stylesheet type=text/css media=screen charset=utf-8 />  
</head>  
<body>  
<img id=set_uploaded_photo class=set_uploaded_photo src=$filename />  
</body>  
</html>";
?>`

OTHER NOTES

  • By placing a src=otherpage.php as an attribute of the iframe, successfully shows the content inside the iframe (in all browsers including IE).
  • I use the doctype < !DOCTYPE html> in the parent html document & the iframe document.
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.