Hi Dave,
Any error message showing on screen?
One solution is try connecting database using simple php script. This will helps to know credentials are working or not.
<?php $link = mysql_connect('localhost', 'mysql_user', 'mysql_password'); if (!$link) { die('Could not connect: ' . mysql_error()); } echo 'Connected successfully'; mysql_close($link); ?>