This what I have and the error i get...
Change Login Information / Copy User
User name: Use text field: (rlnz)
Host: Use text field: (%)
Password: Do not change the password
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'rlnz'@myip.xtra.net.nz' (using password: YES) in C:\Program Files\xampp\htdocs\zz.php on line 4
Could not connect: Access denied for user 'rlnz'@myip.xtra.net.nz' (using password: YES)
<?php
$link = mysql_connect('207.*****.27', 'rlnz', '**');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_close($link);
?>