From 12e02dda1cce061e68ec68b6aa9a594fdc59a636 Mon Sep 17 00:00:00 2001 From: Elyrith Date: Sat, 10 Aug 2013 14:19:44 -0400 Subject: [PATCH] Update README with database installer info. --- README.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 438f871..7805e0b 100644 --- a/README.md +++ b/README.md @@ -13,11 +13,21 @@ simplog.php is intended to be included (with php include) on your webpage, there How do I create the MySQL table? -------------------------------- -Either create a new database and possibly a new user or use an existing database/user and run the command: + +Either create a new mysql user and database or use an existing one, then either: + +Option 1) Go to http://mydomain.tld/path-to-simplog/install.php + + or... + +Option 2) Run this command from the shell: mysql -u -p < blogtable.sql -You'll be asked to enter the passwor for the user, enter it. Now you have created the table for the blog. Now you can start filling it with blog posts. +You'll be asked to enter the password for the user, enter it. + + +Now you have created the table for the blog. Now you can start filling it with blog posts. Contributing ------------