mirror of
https://github.com/php/php-src.git
synced 2025-08-17 14:38:49 +02:00
16 lines
258 B
PHP
Executable file
16 lines
258 B
PHP
Executable file
<?php
|
|
|
|
require_once('connection.inc');
|
|
|
|
$SQL = array();
|
|
|
|
$DB = new pdo($CONNECTION, $USER, $PASSWD);
|
|
|
|
foreach(array('test','classtypes') as $name)
|
|
{
|
|
$DB->query('DROP TABLE IF EXISTS '.$name);
|
|
}
|
|
|
|
$DB->setAttribute(PDO_ATTR_ERRMODE, PDO_ERRMODE_WARNING);
|
|
|
|
?>
|