I have a lot of different forms on our website that have many fields I need the info from. I used an array called $fields and have the form sent to my email when submitted. But how do I keep the empty variables from sending? I don't like all the blank fields.
I know I could use an 'If' statement but I don't want to for every single variable.
Here's a sample, link to the full code is below.
$fields = array();
$fields["Name"] = "\nName";
$fields["email"] = "\nEmail";
$fields["Phone"] = "\nPhone";
$fields["WorkPhone"] = "\nWork Phone";
$fields["Address"] = "\nStreet Address";
$fields["City"] = "City";
$fields["State"] = "State";
$fields["Zip"] = "Zip Code";
$fields["Classification"] = "\nClassification";
$fields["Ad-Headline"] = "\nHeadline";
Here's a full script for one of the forms. http://pastebin.com/W0xjNGmi
