Hi i have a number of checkboxes in a form
<p>Select the modules you take:<br/>
Business <input type="checkbox" name="modules" value="Business"/><br />
Accounting <input type="checkbox" name="modules" value="Accounting"/><br />
Marketing <input type="checkbox" name="modules" value="Marketing" /><br />
</p>
I have a response page and expect the user to choose multiple answers so how would i use a foreach loop? I've tried the following but no hope
foreach($modules as $selected){
print "The modules were ".$modules;
}
Thanks in advance