Jump to content

Hello All. I´m new to programming but I do learn much each day.


Wizzuriz

Recommended Posts

Hello, I´m having a problem with some code.

 

this is the code.

 

<?php
// fetches all of the users from the table. ( this one works just fine.)  
function fetch_users(){
    
    $result = mysql_query("SELECT `user_id` AS `id`, `user_username` AS `username` FROM `users`");

    $users = array();
    
    while(($row = mysql_fetch_assoc($result)) !== false){
      $users[] = $row;  
}

    return $users;
}

// fetches profile information for the given user.
function fetch_user_info($uid){
    $uid =(int)$uid;
    
    $sql = "select 
                `user_username` AS `username`,
                `user_firstname` AS `firstname`,
                `user_lastname` AS `lastname`,
                `user_email` AS `email`,
                `user_about` AS `about`
                `user_location` AS `location`
                `user_gender` AS `gender`
                FROM `users`
                WHERE `user_id` = {$uid}";
                
                $result = mysql_query($sql);
                // this is where there should be a problem, line 33 just below. 
                return mysql_fetch_assoc($result);
}

?>

 

This is my error.

Warning: mysql_fetch_assoc() expects parameter 1 to be resource, boolean given in /Applications/XAMPP/xamppfiles/htdocs/user_profile/core/inc/user.inc.php on line 33

 

please let me know if you can see the problem or if you need more information.

best regards

Wizzuriz

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.