KXStudio Website https://kx.studio/
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.

24 lines
248B

  1. <?php
  2. global $db_link;
  3. if ($db_hostname)
  4. {
  5. $db_link = mysqli_connect($db_hostname, $db_user_ro, $db_pass_ro);
  6. if ($db_link) {
  7. mysqli_set_charset($db_link, "utf8");
  8. mysqli_select_db($db_link, $db_database);
  9. }
  10. }
  11. else
  12. {
  13. $db_link = FALSE;
  14. }
  15. ?>