Possible Duplicate:
PHP Error: mysql_fetch_array() expects parameter 1 to be resource, boolean given
php file
<?php
session_start();
$uniqueid = $_SESSION['unique'];
$result = mysql_query("SELECT * FROM users_info WHERE email='$uniqueid'");
$user_mini_info = mysql_fetch_array($result);
?>
When i execute my php file, I get this warning
Warning: mysql_fetch_array() expects parameter 1 to be resource,
boolean given in .\profile.php on line 5
I dont know what does it really mean? why Im getting this warning ? Could anyone explain me what this warning really mean and how do i get rid off it? I belive due to this warning I am unable to update my page contents that are retrived from data base. any help is greatly appreciated.Thanks