I have a feeling I may just have to break down and write a function to do this, but I figured I'd ask for help here first.
I have an array of category names, and then I have a serialized array of numbers stored in the database w/ the corresponding id numbers for the categories. So here is what I want to do:
implode(", ", unserialize($item["category"]))
But of course, this prints out a comma-seperated list of the numbers. How do I out the $category_name_array[] var around those numbers to print the NAMES in that list instead of the numbers? I tried putting it in a couple different places, and neither worked.
Thanx