Recently my ISP decided to swap over their systems. Since then my Php to MySql database connectivity fails to work.
This trivial script
<?php
$db_name = "novaz3ro";
$connect = mysql_connect('localhost','novaz3ro','password removed');
print '@1 ' . $connect . '<br>';
$db = mysql_select_db($db_name,$connect);
print '@2 ' . mysql_error() . '<br>';
?>
Generates these messages:
Resource id #1
Access denied for user: 'novaz3ro@localhost' to database 'novaz3ro'
What could my ISP have done to allow me to connect to a database but then disallow to select that very database ?
Oh yes, the small print in my ISP contract states I am not allowed to say negative things about them. I think that support calls open for more then 250 hours and nobody answering the phone is great customer service.
Any bright sparks out there ?