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
https://forums.phpfreaks.com/topic/237908-readfile-read-html-file/
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...

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.