[PHP-DB] Concurrent rutines

2004-07-20 Thread Luis Morales
Hello,
Does any know how run many procedures concurrently over php. For example:
$init = current_time;
While (($t  $timeout ) and ($allresult == 0 ) ){
   $t = current_time - $init;
   launch{
   $r[1] = app1;
   $r[2] = app2;  
   $r[n] = appn;
  }
   $allresult = $r[1]  $r[2]  ...  $r[n];
}

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


Re: [PHP-DB] Concurrent rutines

2004-07-20 Thread Jason Wong
You have started a new thread by taking an existing posting and replying to
it while you changed the subject.

That is bad, because it breaks threading. Whenever you reply to a message,
your mail client generates a References: header that tells all recipients
which posting(s) your posting refers to. A mail client uses this information
to build a threaded view (tree view) of the postings.

With your posting style you successfully torpedoed this useful feature; your
posting shows up within an existing thread it has nothing to do with.

Always do a fresh post when you want to start a new thread. To achieve this,
click on New message instead of Reply within your mail client, and enter
the list address as the recipient. You can save the list address in your
address book for convenience.

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