Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

16 righe
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'
]
);