Quote:
Originally Posted by rake
you could write a function to do that, but you'd still end up with more queries.
$list[0] = "...";
$list[0] = "...";
$where[0] = "...";
$where[1] = "...";
for($i = 0; $i < sizeof($list); $i++)
{
mysql_query("UPDATE table SET $list[$i] WHERE $where[$i]");
}
|
Hmm. Is it more efficient (or even supported) to send multiple queries at the same time, separated by semicolons?