選択できるのは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'
]
);