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.

connect.php 235B

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