Im trying to build a carousel of users. I want to include the username, the avatar and a delimiter field (which includes substitutions).
Here is what Ive got:
Code:
SELECT * FROM `#__comprofiler` WHERE cb_usertype="xyz" AND avatar!=""
I'd like the row to look like this:
Code:
[column_username]
<br>
<img src="http://website.com/images/comprofiler/[column_avatar]">
<br>
[column_cb_delimiterfield]
However I know the username is from a different table (I think) so it doesn't show, and the delimiter for whatever reason doesn't show either.
How can I make this work?
Thanks.