How do I increment an array value with session
<?php
session_start();
$my_array=array(5,9,3);
$_SESSION['animals']=$my_array;
$_SESSION['animals'][0]= $_SESSION['animals'][0]+1;
echo "animals=". $_SESSION['animals'] [0];
$_SESSION['views']=$_SESSION['views']+1;
echo "Views=". $_SESSION['views'];
echo "<form method='post' action='realsession.php'>
<input type='submit'>
</form>";
?>
Views works fine, every time I hit submit it adds 1. However animals gives me 6 regardless of hitting submit. So how do I increment the array value?
thanks