Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8138193
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T11:24:53+00:00 2026-06-06T11:24:53+00:00

So I am bashing my head against the wall over a question which more

  • 0

So I am bashing my head against the wall over a question which more than likely has a simple solution. Here is my code.

public function login($username, $password){

        $sql = "SELECT * FROM users WHERE username = :user AND password = :pass";
        $stmt = $this->pdo->prepare($sql);
        $data = array('user' => $username, 'pass' => md5($password . $this->salt));
        $stmt->execute($data);

        $status = $stmt->fetchColumn();
        if($status){
            echo "You are Logged in!";
            print_r($result);
        } else {
            echo $status;
            $this->error['alert'] = "You have not entered the correct login information.";
            Users::ErrorReport();
        }

    }

What I want to do is pull all of the data from that users row and store it in an array so that I can access it in order to store it to the class variables. I would like to do something similar to

while($row = $stmt->fetchAll()){
   $this->username = $row['username'];
}

The problem when I do this is Ive run into a million nasty errors and cant find any solutions while searching the net.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T11:24:55+00:00Added an answer on June 6, 2026 at 11:24 am

    Use fetch() instead of fetchAll()

    while($row = $stmt->fetch(PDO::FETCH_ASSOC)){
       $this->username = $row['username'];
    }
    

    or if you like, you can use fetchAll() this way

    $result_array = $stmt->fetchAll(PDO::FETCH_ASSOC)
    

    Update: Venu is right, it’s a bit wasteful to use mixed (Numeric and Associative) if you’re only gonna use associative. So it’s a good idea to use PDO::FETCH_ASSOC

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Bashing my head against a wall here - was wondering if anybody could help
I've been bashing my head on the wall this afternoon persuading my openGLES2.0 code
I have a problem which I have been bashing my head against for the
I have been bashing my head against a wall all morning trying to figure
I'm completely new to C++. Bashing my head against this error for over an
Hey all, really bashing my head against a keyboard here, any information or pointing
Bashing our heads against the wall here We are an ISV and have hundreds
I've been bashing my head against a wall for a while on this one
I am new to iOS and I have been bashing head against the wall
Okay. I have been bashing my head against the wall for like 2 hours

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.