本日作業分

This commit is contained in:
2023-09-01 01:03:57 +09:00
parent a4f7d22c79
commit 50996316e5
2 changed files with 13 additions and 0 deletions
+1
View File
@@ -1,3 +1,4 @@
/image /image
/draft /draft
/database.php
+12
View File
@@ -0,0 +1,12 @@
<?php
function
set_mysql ($db)
{
$url = 'localhost';
$user = 'root';
$pass = '';
return new mysqli ($url, $user, $pass, $db);
}