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

  • Home
  • SEARCH
  • 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 3343672
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T00:58:54+00:00 2026-05-18T00:58:54+00:00

I’m using hidden forms to pass variables between pages (using POST). It’s working fine

  • 0

I’m using hidden forms to pass variables between pages (using POST). It’s working fine for scalar variables; however, when I try to use arrays I’ve supposedly passed, it looks like the value I’m actually getting is “Array”.

I’ve searched the internet looking for a solution, and this looked promising, but I don’t know if it’s feasible considering that my arrays contain other arrays.

Then I saw the serialize function and hoped that might work, but it’s not working. I tried this fix but it’s still not working. Here’s my code on the form page:

$sendInfo = base64_encode(serialize($info));
echo '<input type="hidden" name="info" id="info" value="'.$sendInfo.'"/>';

Then on the processing page:

$info = unserialize(base64_decode($_POST['info']));

Can anyone know why this isn’t working? Is there a fix, or do you have another recommendation for passing the array?

  • 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-18T00:58:55+00:00Added an answer on May 18, 2026 at 12:58 am

    I recommend using Sessions. It’s easy

    Page 1:

    session_start(); //at the top of each page
    $_SESSION['info'] = $info;
    

    Page 2:

      session_start(); //at the top of each page
        print_r($_SESSION['info']);
    

    should that not work for you because of some odd reason, instead of using serialise, use json_encode and json_decode.

    Page 1:

    $sendInfo = base64_encode(json_encode($info));
    echo '<input type="hidden" name="info" id="info" value="'.$sendInfo.'"/>';
    

    Page 2:

    $info = (array) json_decode(base64_decode($_POST[‘info’]));
    var_dump($info);

    You may find that some of info has now turned into objects. JSON doesn’t support associative arrays (the ones with words as a key) and so it turns them into objects. I’ve type casted it to an array but this will only typecast it at the top level. If you want to recursively typecast use “object2array”. See my first googled result:

    http://www.jonasjohn.de/snippets/php/array2object.htm

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

Sidebar

Related Questions

No related questions found

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.