Re: [PHP] kill php.exe window

2009-04-06 Thread Stuart
2009/4/6 Andrew Williams : > I mean How do I kill it automatically via script and not command line: > > File name: while_loop_script.php > > > $ch = curl_init("mydomain/update_script.php?action=run"); > curl_exec($ch); > curl_close($ch); > > {exit or kill  script} > > window schedule task: > run bo

Re: [PHP] kill php.exe window

2009-04-06 Thread Andrew Williams
I mean How do I kill it automatically via script and not command line: File name: while_loop_script.php $ch = curl_init("mydomain/update_script.php?action=run"); curl_exec($ch); curl_close($ch); {exit or kill script} window schedule task: run box: php.exe to scheldule task it every 5 minutes:

Re: [PHP] kill php.exe window

2009-04-06 Thread Marc
>I need to exit php.exe window after completing an assigned task. Does anyone >knows how to close, exit, kill or stop the window Run your PHP.exe by using appending "& exit" to your command. For instance: php.exe [YOUR COMMAND ARGS] & exit Greetings from Germany Marc -- Sync and share your fi

[PHP] kill php.exe window

2009-04-06 Thread Andrew Williams
I need to exit php.exe window after completing an assigned task. Does anyone knows how to close, exit, kill or stop the window -- willandy.co.uk