1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/ext/pgsql/tests/dropdb.inc

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