您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。

16 行
356 B
PHP

<?php
/**
* Database configuration. If running on the same machine as snipeit,
* you can probably use the same settings here.
*/
$database = new medoo(
[
'database_type' => 'mysql',
'database_name' => 'snipeit',
'server' => 'localhost',
'username' => 'snipeit',
'password' => 'snipeit',
'charset' => 'utf8'
]
);