Split it up a bit more and added a way to find and edit posts

This commit is contained in:
2013-07-27 02:26:29 +02:00
parent 4847b5f4d7
commit 387012735f
8 changed files with 89 additions and 17 deletions

12
includes/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;
?>