Jump to content

Problem showing a .MHT file using PHP code


paggps

Recommended Posts

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 !!!!

 

Archived

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

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.