Jump to content

readfile() read html file


SeanJohn

Recommended Posts

I'm trying to use the readfile() function to read a html page which has a video embedded (.swf file).

 

When I call the function, it seems like it just loads the html file but without the dependent files (css,js, etc)

When I call it directly it loads just fine.

 

Created a hyperlink 'openvideo.php?id=video' that calls this function below:

 

if($_REQUEST['id'] == 'video') {

 

readfile('/usr/home/site.com/htdocs/content/videofolder/video.html');

 

} else {

 

echo 'nada';

}

 

Any help is appreciated.

Link to comment
Share on other sites

readfile() doesn't "load" anything. The browser does according to what you tell it to load.

 

The HTML and PHP files aren't in the same directory, are they? Because if they aren't then the browser will go looking for the other files in the wrong location...

Link to comment
Share on other sites

Hey thanks for your reply!

 

Indeed the php file is in the root (/openvideo.php?id=video) and the videos are a few folders up /videos/

 

How do I read the html file along with the dependent files, js, css etc?

 

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.