giving this it's own home

This commit is contained in:
James Finstrom
2012-12-20 14:22:05 -07:00
parent 2c09289c81
commit 5d5e62380b
6 changed files with 184 additions and 0 deletions

20
uninstall.php Normal file
View File

@@ -0,0 +1,20 @@
<?
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);
?>