I have an HTML form with a table that displays 2 columns of data from a record set as below. I would like to display the entire record in a form on the same page by selecting a record from the repeat list. I know it can be done but I cannot find the right information, or I cannot understand what i do find (one or the other). can you help me? (I am very new to php).
<td><table width="100%">
<?php do { ?>
<tr>
<td width="6%" align="center"><a href="/frmPolicyPrint.php?PolicyID=<?php echo $row_rsPolicies['recordID']; ?>"><img src="/images/Check_16x16.png" width="12" height="12" alt="Check" border="0" title="Open Policy" ></a></td>
<td width="37%"><?php echo $row_rsPolicies['Policy_number']; ?></td>
<td width="33%"><?php echo $row_rsPolicies['Policy_name']; ?></td>
<td width="24%"><input name="PolicyID" type="hidden" id="PolicyID" value="<?php echo $row_rsPolicies['PolicyID']; ?>" size="4"></td>
</tr>
<?php } while ($row_rsPolicies = mysql_fetch_assoc($rsPolicies)); ?>
</table></td>