Hi there,
I have a table with 2 fields, "origional_word", and "replace_with".
This list could potentially contain several hundred replacements (i am making a kind of translator).
What would the quickest way of doing this?
My initial thought was loop through each word, and replace all of the occurances of "origional_word" with "replace_with" using str_replace, however is there a quicker way of doing this?
Thanks
Jonathan