PHP code example of volter / mini_blog
1. Go to this page and download the library: Download volter/mini_blog library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
volter / mini_blog example snippets
return array(
'autoload' => true,
'default' => array(
// Имя базы данных
'name' => 'mini_blog',
// Хост БД
'host' => 'localhost',
// Пользователь БД
'user' => 'root',
// Пароль пользователя БД
'password' => '',
// Кодировка
'charset' => 'utf8'
)
);