FoOlSlideX/config.php

22 lines
491 B
PHP
Raw Normal View History

2022-05-10 16:34:43 +02:00
<?php
$config = [
"title" => "MangaReader",
2022-06-07 22:16:50 +02:00
"cookie" => "mangareader",
2022-05-10 16:34:43 +02:00
"logo" => "assets/img/logo.png",
"slogan" => "Read Manga online for free with no ads",
2022-06-07 22:31:45 +02:00
"url" => "http://localhost/mangareaderx/",
2022-05-10 16:34:43 +02:00
"theme" => 1, // choose betweeen 1-5
"start" => "2020",
"lang" => "en",
"disqus" => "mangapanzer"
];
$slave = [
"host" => "localhost",
"user" => "root",
"pass" => "",
"table" => "mangareaderx"
];
?>