$sql = "select * from customer where 'selected account'";
//execute query
//after execute query you have get selected record after that loop that record and update all selected record
while(){
$sql = "update customer set status='1' where id='id from selected record'";
//execute query
}
1条答案
按热度按时间qc6wkl3g1#
试试这个