+ Post a Comment HERE!   + Ask a Question / Post a Topic
Results 1 to 2 of 2

How to define multidimensional array in php for multiple records

Advert.

  1. #1
    sueet
    sueet is offline Just in!

    How to define multidimensional array in php for multiple records

    Advert.
    how to define multidimensional array in php for multiple records

  2. #2
    Admin's Avatar
    Admin
    Admin is offline Administrator
    Welcome Sueet to eTI comunity.
    Your query has been approved.

    For you question: I generally prefer following format:
    Say you have 2 classes with 4 student each with 5 subject marks for each :
    Code:
    $arr_records = array(
    				'class1' => array(
    								'student1' => array(
    											'sub1' => 23,
    											'sub2' =>44,
    											'sub3' =>22,
    											'sub4' =>24,
    											),
    								'student2' => array(
    											'sub1' => 23,
    											'sub2' =>25,
    											'sub3' =>32,
    											'sub4' =>24,
    											),
    								'student3' => array(
    											'sub1' => 33,
    											'sub2' =>20,
    											'sub3' =>22,
    											'sub4' =>27,
    											),
    								'student4' => array(
    											'sub1' => 23,
    											'sub2' =>20,
    											'sub3' =>31,
    											'sub4' =>24,
    											),
    								),
    			'class1' => array(
    								'student1' => array(
    											'sub1' => 11,
    											'sub2' =>41,
    											'sub3' =>23,
    											'sub4' =>24,
    											),
    								'student2' => array(
    											'sub1' => 19,
    											'sub2' =>18,
    											'sub3' =>32,
    											'sub4' =>24,
    											),
    								'student3' => array(
    											'sub1' => 18,
    											'sub2' =>17,
    											'sub3' =>22,
    											'sub4' =>27,
    											),
    								'student4' => array(
    											'sub1' => 23,
    											'sub2' =>41,
    											'sub3' =>33,
    											'sub4' =>24,
    											),
    							),
    				);
    I hope that helps.
    You may want to read:



    Thought of the Moment:
    A community is all about helping each other.

+ Post a Comment HERE!

Similar Topics and Discussions

  1. India gold traders stay away on new records
    By sirfpaisa in forum Indian Stock Market Discussion
  2. How many SMS I sent daily records for airtel 21 sms pack
    By anamika24 in forum Airtel Mobile
  3. where i can download guiness book of world records
    By micks_y2j in forum Miscellaneous Sensible Discussion
  4. GTA 4 PC- Install game on multiple pc
    By spiraltwists in forum Computer Gaming - The Digital World
X
Have Question? Ask now free!