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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T03:06:36+00:00 2026-06-14T03:06:36+00:00

What I want to do is write a custom PHP session class that stores

  • 0

What I want to do is write a custom PHP session class that stores sessions in the database without using session_set_save_handler().

The purpose of this is so I can easily store data using serialize() and return it using unserialize().

I’ve been looking all day, can’t find anything on this subject. Can anyone help get me started or link me to a useful tutorial?

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-14T03:06:37+00:00Added an answer on June 14, 2026 at 3:06 am

    You do not need the build-in PHP session for that, you can set the cookie yourself, read it and validate it again, from that point on you got a fully functioning session!

    function createCookieString($id, $user, $created)
    {
        $cookieData = array();
        $hash = $this->hashSession($id, $user, $created);
    
        $cookieData[] = $id;
        $cookieData[] = $user;
        $cookieData[] = $created;
        $cookieData[] = $hash;
    
        return implode(':', $cookieData);
    }
    
    function hashSession($id, $user, $created)
    {
        $cookieSalt = 'Your Cookie Salt'; //google what a salt is in hashing if neccecary
        return md5($id.$user.$created.$cookieSalt);
    }
    
    function parseCookieString($string)
    {
        return explode(':', $string);
    
    }
    

    To set the cookie, just use the setcookie function of php.

    You just have to store the session in your database. Its usually verry simple, just a table with ID, userID, created (beeing the timestamp), you dont need the hash to be in your db because its a reusable secret.

    feel free to ask any more questions!

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

Sidebar

Related Questions

as question says, i want to write custom data type data of a class
I'm trying to write a custom session persister in PHP. But for some reason
Question: I want to write a custom aggregate function that concatenates string on group
I have a program I'm writing that I want to write a custom logging
I want to write (in PHP) a custom web interface over a CMIS repository.
I want to write a custom validator which doesn't do anything before the user
I have a large data set and I want to write a custom merge
I want to write a program in Prolog that confirms if a b-tree of
I want to write <a href=product.php?id=5> as product/5.I am not talking about user to
I want to write a program to contact a PHP script online, and show

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.