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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T12:15:41+00:00 2026-06-13T12:15:41+00:00

I am not getting the concept of two dimensional arrays in PHP. I am

  • 0

I am not getting the concept of two dimensional arrays in PHP. I am trying to implement a cart system in which an array Session variable store productid and the quantity of it.
For every new entry if it exists its quantity should be increased or if it does’nt then a new id should be added.
Here is my initial code.

function cart_increment_ajax($data, $qtt) {
    $_SESSION['count']+=$qtt;
    set_cart( $data );
    echo $_SESSION['count'];
}

function initialise_cart( ) {
        $_SESSION['cart'] =array( );
        $_SESSION['totalprice'] = 0;
}

function set_cart( $pid )  {
                    if(!isset($_SESSION['cart'])) {
        initialise_cart( );
                     }
        //else if( int $_SESSION['cart'] pid exists increment count ))
                    else
                    //     ($_SESSION['cart'] add new pid.

}

I am not getting how to implement the commented lines through Multidimensional associative 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-06-13T12:15:42+00:00Added an answer on June 13, 2026 at 12:15 pm

    A small quick n dirty example of a multi-array in a session keeping a cart

    <?php
    
    function add_to_cart($product_id,$count)
    {
        // no need for global $_SESSION is superglobal
        // init session variable cart
        if (!isset($_SESSION['cart']))
            $_SESSION['cart'] = array();
        // check if product exists
        if (!isset($_SESSION['cart'][$product_id]))
            $_SESSION['cart'][$product_id]=$count;
        else
            $_SESSION['cart'][$product_id]+=$count;
    }
    
    // add some foos and a bar
    add_to_cart('foo',2);
    add_to_cart('foo',1);
    add_to_cart('bar',1);
    
    print_r($_SESSION['cart']);
    ?>
    

    This will produce

    Array
    (
        [foo] => 3
        [bar] => 1
    )
    

    HTH

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

Sidebar

Related Questions

Regexp: (?=(\d+))\w+\1 String: 456x56 Hi, I am not getting the concept, how this regex
I'm basically trying to rewrite math.pow, I have the following obviously I'm not getting
I'm studying data structures and linked lists, but I'm not getting the concept of
I'm trying to return a byte array containing the two's-complement representation of a Bignum
Really simple but just not getting it. I want to reference a view by
I'm not getting any anti-aliasing when using drawing GL_TRIANGLE_FANs with this code: glDisable(GL_DEPTH_TEST); //
I am not getting that how to differentiate same element name for eg City,Area
I am not getting any error message in browser due to curly brace missing
I'm not getting the syntax right. Lets say I have this... #include <set> ...
My serializable class is not getting read in with objectinputstream after adding static methods

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.