I tried to install last version of MySQL in Centos 6.4 and execute the following command:
<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_close($link);
?>
I ended up with a blank page result. Any advise?