Why don't you want to use curl? Final thing is to use some AJAX ... that's all that I can think of! :-/
Using CGI version: exec("php -q SCRIPT_PATH_AND_FILENAME",$o,$r); Using the CLI SAPI yields: exec("php -f SCRIPT_PATH_AND_FILENAME",$o,$r); I hope it helps you find out what you need, or probably it is what you need. regards
Adding few more cents. If you need to execute a php script at a schedule then use CRON JOB at unix/linux and Task Schedular at Windwos, rather than using exec, because this function might have been disabled at certain servers. regards
you can try this, if allow_url_fopen is enable: file_get_contents("http://yoursite.com/yourscript.php"); PHP: Or, if you need to call a .php file periodically, try this free cron service.
You can use include (or such) , curl, or exec(), depend on your situation & need. What is the problem in your script?
Derik, Please give more detail about what you are trying to do. Otherwise we are guessing when we try to help.