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 9150405
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T11:36:25+00:00 2026-06-17T11:36:25+00:00

This question might sound strange, but I have a simply tiny session-based login system

  • 0

This question might sound strange, but I have a simply tiny session-based login system (PHP+MySQL) for one of my projects, and I was wondering if it would make any sense to store a user in an object. I could imagine such situations, where doing this could be useful, but… I don’t really know. Does it make difference in case of let’s say a microblogging system?

I think there could be a User class defined, with properties loaded from the MySQL tables, and it could have methods/functions like getUserName() or logOut() or addPost().

The top reason I asked myself this question, is that I don’t have a single clue about how to pass an object to the session, plus all this object-oriented stuff is a little bit new for me as well. I’m not entirely sure about when to think with OOP and when to not.

If you could give me some advices about the topic, or anything useful, it would be extremely helpful. Thanks! 🙂

  • 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-17T11:36:26+00:00Added an answer on June 17, 2026 at 11:36 am

    Since there is no significant overhead for objects in PHP 5.3/5.4, I would recommend you to write code in object oriented style for everything, except simple experiments in codepad.

    As for the authentication system, i wold split it up in two parts:

    • domain object, that contains all of your user validation logic
    • data mapper, that can save User instance to DB

    Here is a simple API example that you might try to use as basis for your code:

    $user = new User;
    $mapper = new UserMapper( $pdo );
    
    $user->setName( $_POST['username'] );
    $mapper->fetch( $user ); 
    
    if ( $user->isAvailable() && $user->matchPassword( $_POST['password'] ))
    {
        $user->setLastLogin( time() );
        // here you put interaction with session
    }
    else
    {
        $user->addFailedAttempt();
        if ( $user->getAttempts() >= 5 )
        {
            $user->setStatus( User::STATUS_LOCKED );
        }
    }
    
    $mapper->store( $user );
    

    You have to understand that the aim of OOP is the maintainability and readability of the code. I assume that you can figure out what goes on in that code snipped without seeing the exact implementation of each method.

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

Sidebar

Related Questions

This might sound like a strange question, but bear with me... I have a
This might sound like a reaaaally dumb question but... why do browsers have a
This might sound like a weird question but I have C# Winform that I
This might sound kinda strange question but I am puzzled. I was just looking
This might sound like a strange question, but does anybody know how to force
I know this might sound like a strange question but I actually need to
This question might sound a bit stupid but here it goes. I have two
I know this question might sound strange because GLib is a portability library, but
I know this question might sound quite silly, but I somehow found myself stuck
This might sound a silly question but I've really spend hours in trying to

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.