Click to See Complete Forum and Search --> : How do I tell if form field is include file.


d.brandusa
09-10-2004, 11:32 AM
I have a checkbox "Property_Damage", how do I tell the submit.php if that checkbox is yes, selected then include this file.

Jona
09-10-2004, 12:22 PM
if(isset($_POST["checkbox"])){
# checked
} else {
# not checked
}