Jump to content

Is it possible...


Deivas

Recommended Posts

Yeh, it can include local php files.

 

You can include and run remote php files by using eval:

 

eval(file_get_contents('http://host.com/remotefile.php'));

 

Of course I wouldn't suggest you do this unless you have absolute control over the remote file and it is the only way to reference the code.

 

Also, you might want to try cURL, that can do some pretty incredible stuff.

Link to comment
Share on other sites

Yeh, it can include local php files.

 

You can include and run remote php files by using eval:

 

eval(file_get_contents('http://host.com/remotefile.php'));

 

That will not work. When file_get_contents() calls an external php file the web server will parse that php file and return the processed results (i.e. the rendered html code), it will not return the PHP code.

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.