Jay Blanchard wrote:

[snip]
I would like to intiate the same function many times, running in the
background using php,
[/snip]

for($i = 0; $i < 1000; $i++){
        foo($blork); // function runs one thousand times
}

Please RTFM, STFW, and STFA for PHP tutorials.

Thank you.

This is not what he asked. He wants to run the process in the background.


PHP's process control functions may do what you need....

http://us3.php.net/manual/en/ref.pcntl.php

--
By-Tor.com
It's all about the Rush
http://www.by-tor.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to