FreePBX-AvantFAX/HelloWorld/uninstall.php

21 lines
333 B
PHP
Raw Normal View History

2012-12-20 16:25:36 -05:00
<?
global $db;
if (! function_exists("out")) {
function out($text) {
echo $text."<br />";
}
}
if (! function_exists("outn")) {
function outn($text) {
echo $text;
}
}
//Johnny Drop Tables
out("Dropping all relevant tables");
$sql = "DROP TABLE `HelloWorld_settings`";
$result = $db->query($sql);
?>