Split project into multiple files, added a way to post to the blog and rewrote README file

This commit is contained in:
2013-07-25 06:12:02 +02:00
parent b14dc108c3
commit 36751401ca
6 changed files with 77 additions and 29 deletions

12
config.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
// MySQL config options
$host = "localhost";
$database = "test_db";
$user = "test_db";
$password = "test_pw";
// How many posts do we want on each page
$posts_per_page = 5;
?>