Help for this page

Select Code to Download


  1. or download this
    ID | SOMEVALUE
    --------------
     1 | NULL
     2 | text
     1 | NULL
    
  2. or download this
    while ( ( $id, $value ) = $hStatement->fetrow_array )
    {
      $hStatement2->prepare( INSERT INTO test2 VALUES ( ?, ? ) );
      $hStatement2->execute( $id, $value );
    }
    
  3. or download this
      $hStatement2->prepare( $sSQL_Statement );
      $hStatement2->execute(  );