How can I add arrays into an existing array item?
For instance:
$user[$user->id] = array(//values);
But if that user needs another array added, I want all data to fall under that user ID in the array.
I want to store orders a user has made, so I can look up all orders on the fly by user ID in the $user array above.