I've been looking at this too long and just cannot figure out what's wrong here :(
<?php
$config['name'] = 'admin';
$config['password'] = 'xxxxxxxx';
$config['email'] = 'admin@rltz.com';
$config['db_user'] = 'ephrils';
$config['db_pass'] = 'xxxxxxxx';
$config['db_data'] = 'addv2';
$config['db_host'] = 'addv22.rltz.com';
$con = mysql_connect('addv22.rltz.com','ephrils','xxxxxxxx');
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db($config['db_data'], Resource id #2);
?>