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.

12 lines
181B

  1. <?php
  2. global $db_link;
  3. $db_link = mysql_connect($db_hostname, $db_user_rw, $db_pass_rw);
  4. if ($db_link) {
  5. mysql_set_charset("utf8");
  6. mysql_select_db($db_database, $db_link);
  7. }
  8. ?>