is it possible to reuse functions already in use?
instead of waiting for the function to finish executing, say
<?php
$res = mysql_query("SELECT * FROM here WHERE this='that'");
$row = mysql_fetch_assoc($res);
//update the row to remove it from this result set next run
##snip update code##
run_this();
?>
And use
<?php
$res = mysql_query("SELECT * FROM here WHERE this='that'");
while($row = mysql_fetch_assoc($res)) {
//update the row to remove it from this result set next run
##snip update code##
run_this();
}
?>
or would it cause complications?