Please help me how to add the values using either php or html. <html> <head> <title>Checkboxes</title> <?PHP $ch1 = 'unchecked'; $ch2 = 'unchecked'; $ch3 = 'unchecked'; $ch4 = 'unchecked'; $ch5 = 'unchecked'; if (isset($_POST['Submit1'])) { if (isset($_POST['ch1'])) { echo $_POST['ch1']; $ch1 = $_POST['ch1']; if ($ch1 == 'net') { print $ch1; $ch1 = 'checked'; } } […]
The post adding values in check boxes (php) appeared first on BlogoSfera.