I am getting the error below and was wondering if anyone could help me in resolving the error.
PHP Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in /var/www/html/2plan/include/class.user.php on line 261, referer: http://localhost/2plan/install.php?action=step3
Below is a portion of the code from the class.user.php file
/**
* Get a user profile
*
* @param int $id User ID
* @return array $profile Profile
*/
function getProfile($id)
{
$id = (int) $id;
$sel = mysql_query("SELECT * FROM ".$this->getTableName()." WHERE ID = $id");
$profile = mysql_fetch_array($sel);' //This is line 261
Appreciate if anyone can point me into the right direction on what needs to be done to correct the error. Thanks in advance.