Nieuw lid |
|
Beste,
Ik heb de volgende code
<?php
$query = mysql_query('SELECT id, character_name FROM dkp_member_statistics
ORDER BY character_name ASC');
while($fetch = mysql_fetch_assoc($query))
{
echo '<tr><td style="border-bottom:1px dotted">'.$fetch['character_name'].'</td><td style="border-bottom:1px dotted"><input type="checkbox" name="normal[]" id="normalpoints" value="'.$fetch['id'].'" /></td><td style="border-bottom:1px dotted"><input type="checkbox" name="early[]" id="earlypoints" value="'.$fetch['id'].'" /></td></tr>';
}
?>
<?php $query = mysql_query('SELECT id, character_name FROM dkp_member_statistics ORDER BY character_name ASC'); { echo '<tr><td style="border-bottom:1px dotted">'.$fetch['character_name'].'</td><td style="border-bottom:1px dotted"><input type="checkbox" name="normal[]" id="normalpoints" value="'.$fetch['id'].'" /></td><td style="border-bottom:1px dotted"><input type="checkbox" name="early[]" id="earlypoints" value="'.$fetch['id'].'" /></td></tr>'; } ?>
Nu wil ik dus met een foreach kijken wie een x-aantal punten krijgt.
foreach($_POST['normal'] as $id)
{
// check if they get extra to
echo $id.' gets 5 points<br />';
}
foreach($_POST['normal'] as $id) { // check if they get extra to echo $id.' gets 5 points<br />'; }
Werkt dan perfect, MAAR hoe kan ik nu kijken of ze de 2e checkbox ook aangevinkt hebben voor één extra punt?
Krijg het niet voor elkaar!
Groetjes
|