If I am working with an associate array like such:
Array ( [Username] => user [Email] => email )
and I want to add an
Generally, with an associative array you don't have control over the order of the elements.
The elements can be in any order.
However I've found php keeps the order that you add them.
So just do $myarra["name"] = "password"
$myarra["name"] = "password"