paggps Posted June 21, 2007 Share Posted June 21, 2007 Hello, I have .MHT files saved on a server and I need PHP to open them and display in the browser as a regular page. For the security reasons, I cannot directly point to their location, so I want PHP to open these .MHT files, and only logged in users can have an access to them. Here the code I'm trying: $url = "http://localhost/site/file.mht"; include $url; And also have tryed this: $url = "http://localhost/site/file.mht"; header("Content-Type: text/html"); include $url; The problem is that in both cases, the opened page is completely scrambled. It has the text within the file, but it shows completely messed. Thank you for your help. Y really need HELP !!!! Quote Link to comment https://forums.phpfreaks.com/topic/56571-problem-showing-a-mht-file-using-php-code/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.