You can use the include statement in PHP to include files from a remote server.

  • TRUE
  • FALSE
  • nan
  • nan
No, in PHP, the include statement is used to include local files present on the server where the PHP script is being executed. It cannot directly include files from a remote server. To include remote files, you would typically use other methods like file_get_contents() or cURL to fetch the remote file's content and then include it in your PHP script.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *