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