Fisrt ,I use the code like below:
while (list($name, $value) = each($out_arr))
{
echo $name."=".$value;
echo "/n";
}
It is show :1957/2=1 1957/3=1 1957/4=1 1957/5=2
Next,I want to access the array again.I use the code again,but It isnot work .
how to do?
Thank you for help.