Awesome, I got it working nicely. 🙂 Thanks.
While I am at it, is there a way to sort of, concate values?
When I do this, the array gets overwritten:
$array = array(
'element1' => 'cool',
'element2' => 'dumb');
$array = array(
'element3' => 'rad';
I know I can easily just create a function to handle this, however I would rather not if there is an easier way to do it directly with php.