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 181B

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