I'm away from my coding computer so I'll have to post an example and not the actual code.
Here's some code off the fly that is more or less the system I'm working on:
PHP Code:
<form method="post" action="processpage.php">
<table>
<tr>
<td>Product Name</td>
<td>Ad Redirect URL</td>
<td>Other Ad Specific Data</td>
<td>Update?</td>
</tr>
<?
sql = query("SELECT id, name FROM products");
while($row = fetchArray($sql)){
$prodid = $row['id'];
$prodname = $row['name'];
echo "
<tr>
<td>$prodname</td>
<td><input type='text' name='url' class='form' size='3'></td>
<td><input type='text' name='morevars' class='form' size='3'></td>
<td>
<input type='hidden' name='pid' class='form' value='$prodid'>
<input type='checkbox' name='update[]' value='1'>
</td>
</tr>
";
}
<tr>
<td colspan='4'>
<input type='submit' name='Submit' value='update'>
<td>
</tr>
?>
</table>
</form>
processpage.php should recognize that the checkbox was checked and then add the other data associated with that checkbox.
Bookmarks