maybe i should have been specific, what i want to figure out is how VB does stuff like this :
eg. takes an array of
$names[0] = 'bob';
$names[1] = 'sam';
with the following template
Code:
<tr>
<td> $names
</td>
</td>
and output's the following code based on the array :
Code:
<tr>
<td> bob
</td>
</td>
<tr>
<td> sam
</td>
</td>
VB seems to do this all the time when listing out threads and private messages and the like.
maybe i am not understanding how VB does it.
are array's even involved?
please help me.
thanks in advance.
jordan