Hello all!
I am in dire need here. I have been banging my head for days now trying to complete this project and now that I have turned it in I can ask for help!
I have a form on a web page that has check boxes. Professor wanted us to echo to the next page. No DB connection. It was a final. Now before you tell me I should use a different code let me be clear that the PHP code is the way he wanted it done.
I can not get my echo to tell me which boxes were checked? I also get the address echo in the airport line? I have attempted different types of PHP but none will echo the information correctly!
Can anyone help???
Thanks!
Here is my html code:
<td class="auto-style9" valign="top">Type of Clinic: </td>
<td class="auto-style8" valign="top">
<input name="clinic[]" type="checkbox" value="colorguard" /> Color Guard<br />
<input name="clinic[]" type="checkbox" value="winterguard" /> Winter Guard<br />
<input name="clinic[]" type="checkbox" value="percussion" /> Percussion / Drum Line<br />
<input name="clinic[]" type="checkbox" value="drummajors" /> Drum Majors<br />
<input name="clinic[]" type="checkbox" value="leadership" /> Leadership<br />
<input name="clinic[]" type="checkbox" value="marchingtech" /> Marching Technique<br />
<input name="clinic[]" type="checkbox" value="consultation" /> Consultation</td>
</tr>
<tr>
Here is my corresponding PHP code:
[php]