fork download
  1. <?php
  2.  
  3. $mysqli = new mysqli("localhost","user","password","db");
  4. printf("Connect failed: %s\n", mysqli_connect_error());
  5. exit();
  6. }
  7.  
  8. $i = 1;
  9. while ($i <= 14)
  10. {
  11. $column = 'field_'.$i;
  12. $sql= '"ALTER TABLE supply ADD '.$column.' VARCHAR(45)"';
  13. $result = $mysqli->query($sql) ;
  14. if ($result){
  15. echo "Table is updated. New column {$column} added" ;
  16. }
  17. $i++;
  18. }
  19.  
  20. ?>
Runtime error #stdin #stdout #stderr 0.01s 20568KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Fatal error:  Class 'mysqli' not found in /home/0Wz9LL/prog.php on line 3