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";
?>