キケッツ掲示板のリポジトリです. https://bbs.kekec.wiki
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
139 B

  1. <?php
  2. function
  3. set_mysql ($db)
  4. {
  5. $url = 'localhost';
  6. $user = 'root';
  7. $pass = '';
  8. return new mysqli ($url, $user, $pass, $db);
  9. }