Php Contact Form Will Not Submit
I have a simple php contact form i got from a web tutorial. It worked yesterday, but will not work today. I'd love some help, as I don;t know much php. php:
Solution 1:
$_POST["subject] is not defined in your form. Your SUBJECT field is called EMAIL:
Change:
<div class="form-group">
<labelfor="subject">Subject<spanclass="help-required">*</span></label><inputtype="text"name="email"id="subject"class="form-control required"role="input"aria-required="true"></div>
With:
<div class="form-group">
<labelfor="subject">Subject<spanclass="help-required">*</span></label><inputtype="text"name="subject"id="subject"class="form-control required"role="input"aria-required="true"></div>
Post a Comment for "Php Contact Form Will Not Submit"