I need to run a localhost php file (without uploading it to my website).
I have a php file calld myfile.php on my website. Here is the code.
<?php
include "local_file.php";
?>
Is there any way to make this program work such that I store local_file.php on my local server(localhost), and still access it using the above code(myfile.php) which is stored on my website?