1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 10:12:18 +01:00
Files
archived-php-src/ext/pgsql/tests/dropdb.inc
Yasuo Ohgaki 3778705036 Actually drop test table.
# name is dropdb since it may be changed to actually destory test db
2001-12-17 02:20:43 +00:00

11 lines
131 B
PHP

<?php
// drop test table
include('config.inc');
pg_connect($conn_str);
pg_query($db, "DROP TABLE ".$table_name);
echo "OK";
?>