I wonder why I don't get the 3 elements of my array.
$array1 = array( "One" => 1, "Two" => 2, "One" => 1 ); When I print it:
echo 'array1:<pre>'; print_r($array1); echo '</pre>'; I get this:
array1: Array ( [One] => 1 [Two] => 2 ) This is not what I want. I need to show the following:
array1: Array ( [One] => 1 [Two] => 2 [One] => 1 ) Any help wil be appreciated. Thanks in advance