--- On Fri, 10/10/08, Wade Smart <[EMAIL PROTECTED]> wrote: > Yea, that was where I was going too. I finally pulled the array apart > and did it a LONG way and it worked but -- it was an extra step that > I didnt want but --- it worked. > > Wade
Sometimes an array is not the best way to manipulate data like this. You could put it in a MySQL table, even a temporary one, so you could pull the desired data out with a SELECT query. Otherwise, there are ways to perform sorts with custom functions. It might be possible to tinker with this if we had a bigger sample data set. James Keeline
