I hope my question adequately describes what I'm after...
Here is the situation. I have the following arrays with values.
categories['t-shirts'] = 10
categories['shorts'] = 11
...
clothing[0] = 't-shirts'
clothing[1] = 'shorts'
...
I want to replace the values in the clothing array (t-shirts, shorts) with the number that matches it from the categories array.
Cheers

clothing[10]andclothing[11]? – hsz Sep 25 '12 at 11:41clothing[0] = 10– Bhuvan Rikka 웃 Sep 25 '12 at 11:42