mirror of
https://github.com/php/php-src.git
synced 2024-12-12 03:15:29 +08:00
14 lines
457 B
PHP
14 lines
457 B
PHP
<?PHP
|
|
require_once('connect.inc');
|
|
|
|
if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
|
|
printf("[clean] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
|
|
$host, $user, $db, $port, $socket);
|
|
}
|
|
|
|
if (!mysqli_query($link, 'DROP TABLE IF EXISTS test')) {
|
|
printf("[clean] Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link));
|
|
}
|
|
|
|
mysqli_close($link);
|
|
?>
|