This commit is contained in:
Andrew Nagy
2013-05-03 14:44:25 -04:00
committed by root
parent 2e1d048030
commit b231ee1cbb
13 changed files with 102 additions and 306 deletions

View File

@@ -1,20 +1,5 @@
<?
global $db;
if (! function_exists("out")) {
function out($text) {
echo $text."<br />";
}
}
if (! function_exists("outn")) {
function outn($text) {
echo $text;
}
}
<?php
//Johnny Drop Tables
out("Dropping all relevant tables");
$sql = "DROP TABLE `HelloWorld_settings`";
$result = $db->query($sql);
?>
$result = sql($sql);