php数据库更新多条数据问题?

2024-11-24 11:21:04
推荐回答(2个)
回答1:

$name = array('yuan','wang','li');
$price = array('10','21','5');
foreach($name as $key => $_name){
    $_price = $price[$key];
    $sql = "update tabel set price='".$_price."' where name = '".$_name."'";
    //echo $sql, "\n";
    //to do ...
}

回答2:

foreach循环下数组不就可以了