fork download
  1. <?php
  2.  
  3.  
  4. $tbl = '`table1`';
  5.  
  6. $trunc = $conn->prepare('TRUNCATE TABLE :tbl');
  7.  
  8. $trunc->bindParam(':tbl', $tbl, PDO::PARAM_STR, 64);
  9.  
  10. $trunc->execute();
  11.  
  12.  
  13.  
  14. ?>
Runtime error #stdin #stdout #stderr 0.01s 52488KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Notice:  Undefined variable: conn in /home/73jYsR/prog.php on line 6
PHP Fatal error:  Call to a member function prepare() on null in /home/73jYsR/prog.php on line 6