13 lines
185 B
PHP
13 lines
185 B
PHP
<?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;
|
|
|
|
?>
|