From 2d9cd9de75a7572ee310b6f38cffd7afad56d6cf Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Fri, 31 Dec 2010 23:08:00 -0500 Subject: [PATCH] doing mysql stuff --- docroot/html/mysql.php | 58 ++++++++++++++++++++++++++++++++++++++++++ docroot/setup.sql | 6 +++++ 2 files changed, 64 insertions(+) create mode 100644 docroot/html/mysql.php create mode 100644 docroot/setup.sql diff --git a/docroot/html/mysql.php b/docroot/html/mysql.php new file mode 100644 index 0000000..64b8611 --- /dev/null +++ b/docroot/html/mysql.php @@ -0,0 +1,58 @@ + + + + + +
+ + +
clear + +
+ + +
+ + + + + diff --git a/docroot/setup.sql b/docroot/setup.sql new file mode 100644 index 0000000..7c15acb --- /dev/null +++ b/docroot/setup.sql @@ -0,0 +1,6 @@ +CREATE TABLE IF NOT EXISTS customers ( + customer_id INTEGER, + name VARCHAR(255), + email VARCHAR(255), + PRIMARY KEY(customer_id) +);