Had a hard time wording this in google so I figure ill ask here.
I have an array like such:
Array ( [a] => \'a\' [b] => \'b\' [c] => \'c\' )
Use array_values(), as in the manual example:
"XL", "color" => "gold"); print_r(array_values($array));
The above example will output:
Array ( [0] => XL [1] => gold )