OK the extra value is already set - the 'No' at end...
echo '<input type="radio" name="attended['.$row2['ffnumber'].']" id="attended" value="'.$row2['class_ID'].'No" />';
Is this correct??
Then on the process page I have...
foreach($attended as $k => $v)
{
$query = "UPDATE training ".
"SET attended = 'Yes' ".
"WHERE ffnumber = '$k' ".
"AND class_ID = '$v'";
$result = mysql_query($query) or die(mysql_error());
}
How do I split the value of the radio button??
Thanks.