Dear All
Find below a code to populate a table.
The values in arrays are taken from text file.
This works fine.
But I want the subject as the array value and not just the standard arearing in this table
please help
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="19" colspan="3" valign="top"> </td>
</tr>
<?php
for ($i=0; $i<=$la-1; $i++)
{
?>
<tr>
<td width="8%" align="center"> </td>
<td width="19%" height="25" align="center" valign="top"><img src="bluearrow.jpg" width="15" height="11" vspace="2"></td>
<td width="73%" height="25" valign="top"><span class="text12b"> <a href="mailto:example@example.com?subject="""><?php echo $array[$i]; ?></a></span></td>
</tr>
<?php
}
?>
</table>