sql >> Base de Datos >  >> RDS >> Mysql

Actualización de MySQL con variables de PHP en un bucle

Si va a tener un número variable de variables ($recordsQuestion_1 , $recordsQuestion_2 ... $recordsQuestion_n ), considere usar una matriz en su lugar, ya que será mucho más fácil trabajar con esto.

Lo que podría resultar en un ciclo más limpio como:

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