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

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.