Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySQL-Update mit PHP-Variablen in einer Schleife

Wenn Sie eine unterschiedliche Anzahl von Variablen haben ($recordsQuestion_1 , $recordsQuestion_2 ... $recordsQuestion_n ), sehen Sie sich die Verwendung eines Array an stattdessen, da dies viel einfacher zu handhaben ist.

Was dann zu einer saubereren Schleife führen könnte wie:

$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
  }
}