Hi
How can I get the index from the following code
// Set the array
$_SESSION['grind_array'][] = array('Interest' => $_SESSION['Interest'],
'Subject' => $_SESSION['Subject'],
'Level' => $_SESSION['Level'])
);
I need to obtain the internal order in which the element of the above array are stored, subsequent to the removal or delection of some of the elements.
Basically I want to be able to use these indexes in a subsequent page.
For example if the array has 3 elements I want to use index 0,1,2 in the next page.
Regards
How can I get the index from the following code
// Set the array
$_SESSION['grind_array'][] = array('Interest' => $_SESSION['Interest'],
'Subject' => $_SESSION['Subject'],
'Level' => $_SESSION['Level'])
);
I need to obtain the internal order in which the element of the above array are stored, subsequent to the removal or delection of some of the elements.
Basically I want to be able to use these indexes in a subsequent page.
For example if the array has 3 elements I want to use index 0,1,2 in the next page.
Regards