please friends i have been trying to fetch data from my database but my output is showing a blank page this are my codes
?php
$host_name = "localhost";
$user_name = "root";
$password = "";
$db_name = "addressbook";
mysql_connect("$host_name", "$user_name", "$password");
mysql_select_db("$db_name");
$result = mysql_query("SELECT * FROM bestway");
?>
its just showing a blank page i cant tell why