Re: [PHP-DB] Pause While-loop when waiting for function call to complete

2011-04-24 Thread Richard Quadling
On 24 April 2011 05:19, listread  wrote:
> While listing each row in a MySQL database, I need to call a function or
> another php file for each row.
>
> How can I make the while-loop wait for the called function to complete
> before continuing to the next row in the while-loop?
>
> Thanks!
>
> - Ron
>
>
> --
> PHP Database Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

You don't need to.

PHP executes the code in order. When the code makes a call to a
function, that function will need to complete before the code that
follows the call continues.





-- 
Richard Quadling
Twitter : EE : Zend
@RQuadling : e-e.com/M_248814.html : bit.ly/9O8vFY

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



[PHP-DB] Pause While-loop when waiting for function call to complete

2011-04-23 Thread listread
While listing each row in a MySQL database, I need to call a function or 
another php file for each row.


How can I make the while-loop wait for the called function to complete 
before continuing to the next row in the while-loop?


Thanks!

- Ron


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