bpat1434 wrote:Depends upon the software... what did you download?
Generally, most of the time a variable in PHP is set and then a [man]str_replace/man is called which replaces all the template vars ({%blahblahblah%}) with the value of the variable.
If you give us what you're using, or some examples, we could help you further
{%title%} usually prints out title.
{%pollresults%} usually will print out some kind of poll results.
<a href="{%HOME%}"> will link out www.url.com
Here's a clip of script showing featured images and brief detail:
<table cellpadding="4">
<tr>
<td>
{%FEATURED_IMAGE%}
</td>
<td style="vertical-align:top;font-size:9pt;"class="color">
{%FEATURED_USER%}
<br />
{%user_gender%}
<br />
Age: {%user_birthday%}
<br />
<!-- HIDE_STATE_START --!>
{%user_location_city%}, {%user_location_state%} <br />
<!-- HIDE_STATE_END --!>
{%user_location%}
</td>
</tr>
</table>
So any ideas to find out what {%%} is?
There's no way to find out what the value is?
I'm playing around with phpfox's community portal.