<?php
/*This page is solely for the database conection.*/
DEFINE('DB_DETAILS', true);
DEFINE('DB_HOST', "sql213.0fees.net");
DEFINE('DB_USER', "fees0_4950895");
DEFINE('DB_PASS', "*******");
DEFINE('DB_NAME', "fees0_4950895_myptc");
?>
if you want to connect to an sql database you have to use an FQDN
( http://en.wikipedia.org/wiki/Fully_qualified_domain_name ) or IP address, which should appear in cpanel
( http://en.wikipedia.org/wiki/Localhost )
sql213.0fees.net would be the fqdn of the sql serverPHP:<?php /*This page is solely for the database conection.*/ DEFINE('DB_DETAILS', true); DEFINE('DB_HOST', "sql213.0fees.net"); DEFINE('DB_USER', "fees0_4950895"); DEFINE('DB_PASS', "*******"); DEFINE('DB_NAME', "fees0_4950895_myptc"); ?>
(ping sql213.0fees.net to get it's ip address)