Hello,
I am trying to find the most efficient way of creating a list of all the words that are contained in a certain table of my mysql dbase. The table is quite large and the method I am using is => retrieve all the data, put it into a single string then use the implode() function to create an unique array with all the unique words contained in my table.
This is however extremely slow, any suggestions on how I could do this more efficiently?? Oh and the data I am retrieving is spread across multiple fields.
Thanks
Stonefish