1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/pgsql/tests/dropdb.inc
2002-01-10 06:44:02 +00:00

11 lines
137 B
PHP

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