Easiest explanation is to look here: http://wmomusic.org/fl1/flpets5.php
You can see that the abilities "Location"and “skills” have multiple results. Those are group-concatted into display into displaying in 1 cell and named LOCidlist and Skillidlist.
So far so good. But as you can see making them display in the cell using echo with <a href:" > makes every word in that cell the hyperlink corresponding to the first result. Which works fine if the result is only 1 location or skill.
but of course this does not work if there are multiple results.
So somehow i need to 1) either make each word a hyperlink BEFORE group concatting them
- or somehow tell the echo command to link every word to the corresponding location id or skill id.
I have no idea how to go at this. My first thought was to create an array, as hyperlink and then use concat. (option 1) …but i read that won’t work…
anyone has encountered this problem and how did you solve it? I have over 700 results in my tables so it needs to be programmable (not manual entries)