ok, i’m using loadvars to load the name of a place and the link to their website into an html dynamic textbox. The problem is the formatting in order to get it to format it correctly.
I’m loading a couple different variables from PHP:
[LIST=1]
[]loadshows[“showdate”+i] - this is the date on which the event happens
[]loadshows[“venue”+i] - this is the name of the place that the event is taking place at
[*]loadshows[“venuelink”+i] - this is the link to the “venue’s” website[/LIST]
Some code:
article.showdate.body_textbox.html = true;
article.showdate.body_textbox.htmlText = loadshows["showdate"+i]+" @ a href='"+loadshows["venuelink"+i]+"' target='_blank'>"+loadshows["venue"+i]+"</a>";
Anybody know why this isn’t working?
:q: