I\'m trying to prepend an item to the beginning of an associative array. I figured the best way to do this is to use array_merge, but I\'m having some odd consequences. I
You could try something like
$products[0]='Select a Product' ksort($products);
That should put the 0 at the start of the array but it will also sort the other products in numeric order which you may not want.