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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T19:22:45+00:00 2026-05-24T19:22:45+00:00

I am trying to save my _POST array to a _SESSION array so that

  • 0

I am trying to save my _POST array to a _SESSION array so that I can use that in other pages of the website
when i do

$_SESSION = $_POST;

it didn’t worked.

Also the following code also is giving a error and not copying it.

foreach($_POST as $element){
  $_SESSION[] = $element;
}
  • 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-05-24T19:22:46+00:00Added an answer on May 24, 2026 at 7:22 pm

    $_SESSION can’t handle numeric keys; it must be an associative array. I.e. if you do

    $_SESSION[] = "foo";
    

    like you do in your foreach-loop, it’ll create a new numeric key like in any other array (e.g. $_SESSION[0] == "foo"), but PHP will skip the key when saving the session. You get an “notice”-level warning like “Skipping numeric key 0”. So the next time the $_SESSION array is read, it won’t contain any numeric keys.

    So you must use a string index, like:

    $_SESSION['POST'] = $_POST;
    

    That should work.

    You should also be able to do $_SESSION = $_POST and overwrite the entire $_SESSION array. Can’t say why that doesn’t work. But I can’t see why you would want to do it either. If you ever want to use $_SESSION for anything else (like, actual session data), you can’t have your code randomly overwriting the entire array with post data here and there. Better to just use a string index like above to store the post data.

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

Sidebar

Related Questions

Trying to save the $_SESSION['uID'] within the session to use for functions like pulling
I am trying to save images using the following code: - (void)writeData{ if(cacheFileName==nil) return;
I am trying to save an array of records into a mysql database but
I'm trying to use Ajax with my CRUD. I'm following this tutorial . I
I am trying to save a mobile number in MYSQL table with the following
I am trying to alter my edit action so that a user can only
I am trying to submit checkbox's values array to controller: @RequestMapping(value = /save, method
Im trying to save a bitmap jpg format with a specified encoding quality. However
I am trying to save data to a database on a button push, but
I'm trying to save some XML-Data in my UserSettings (Properties.Settings.Default.UserSettings) in a .NET Winforms

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.