This repository has been archived on 2026-03-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
kekec_bbs/database.example.php
T
2023-09-01 01:03:57 +09:00

13 lines
139 B
PHP

<?php
function
set_mysql ($db)
{
$url = 'localhost';
$user = 'root';
$pass = '';
return new mysqli ($url, $user, $pass, $db);
}