# Dynamic text /w dynamic link

**URL:** https://forum.kirupa.com/t/dynamic-text-w-dynamic-link/194172
**Category:** Uncategorized
**Created:** [July 21, 2006, 1:29am UTC](https://forum.kirupa.com/t/dynamic-text-w-dynamic-link/194172 "2006-07-21T01:29:34Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![JoshuaJonah](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/joshuajonah/32/1775_2.png) [@JoshuaJonah](https://forum.kirupa.com/u/JoshuaJonah)
#### Post date: [July 21, 2006, 1:29am UTC](https://forum.kirupa.com/t/dynamic-text-w-dynamic-link/194172/1 "2006-07-21T01:29:34Z")

</div>

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:

```auto
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:
