Practical No 4
Practical No 4
a. Indexed Array
<?php
//Indexed Array
$seasons = array('Summer','Rainy','Winter', 'Autumn');
Output –
b. Associative Array
<?php
//Associative Array
$emp = array(
'id' => 123,
'name' => 'Shantanu Gaikwad',
'email' => '[email protected]',
'salary' => 100000);
Output –
<?php
//Multidimensional Array
$score = array(
'Ben' => array(
'Chemistry' => 88,
'Physics' => 90,
'Math' => 95),
'Max' => array(
'Chemistry' => 80,
'Physics' => 85,
'Math' => 85));
Output –