Nếu bạn sắp có một số lượng biến khác nhau ($recordsQuestion_1
, $recordsQuestion_2
... $recordsQuestion_n
), hãy xem cách sử dụng mảng
thay vào đó, vì điều này sẽ dễ làm việc hơn nhiều.
Sau đó, điều này có thể dẫn đến một vòng lặp sạch hơn như:
$recordsQuestion = array(
'Zero' , # PHP Arrays are zero-indexed, so the first element will have a key of 0
'One' ,
'Two' ,
...
);
$sqlTpl = 'UPDATE records SET recordListingID = "%s" WHERE recordID = %s';
foreach( $recordsQuestion as $key => $value ){
$sqlStr = sprintf( $sqlTpl , mysql_real_escape_string( $value ) , (int) $key );
if( !mysql_query( $sqlStr ) ){
# Row Update Failed
}else{
# Row Updated OK
}
}