Share Pastebin
Guest
Public paste!

config.

By: a guest | Mar 17th, 2010 | Syntax: PHP | Size: 0.54 KB | Hits: 62 | Expires: Never
Copy text to clipboard
  1. <?php
  2. # FileName="Connection_php_mysql.htm"
  3. # Type="MYSQL"
  4. # HTTP="true"
  5. $hostname_raxezdev = "65.75.242.215"; // MySQL Host
  6. $port_raxezdev = 3306; // MySQL Port, default = 3306
  7. $database_raxezdev = "raxezdev"; // CMS Database
  8. $database_logon = "logon"; // Logon Database (Including the accounts table)
  9. $username_raxezdev = "root"; // MySQL User
  10. $password_raxezdev = ""; // MySQL Password
  11. $raxezdev = mysql_pconnect($hostname_raxezdev .':'. $port_raxezdev, $username_raxezdev, $password_raxezdev) or trigger_error(mysql_error(),E_USER_ERROR);  
  12. ?>