I want to link up my contact form to be able to send to my email. However, I have zero knowledge in the back-end php scrips.
I've tried looking up some basic ones but none of them have worked out. I've even tried looking at some of the tutorials online. I really only need the fields to be linked up to an email. Also, the required fields in php aren't needed because i'm just going to use the html require
validation.
<div class="contactme">
<div class="col-md-6 contactform">
<h2>Contact</h2>
<hr />
<form class="col-md-12" id="contact-form" method="post" action="contact.php" role="form">
<div class="messages"></div>
<div class="controls">
<div class="row">
<div style="padding: 20px;" class="col-md-6">
<div class="form-group">
<label for="form_name">Firstname *</label>
<input id="form_name" type="text" name="name" class="form-control" placeholder="Please enter your firstname *" required="required" data-error="Firstname is required." />
<div class="help-block with-errors"></div>
</div>
</div>
<div style="padding: 20px;" class="col-md-6">
<div class="form-group">
<label for="form_lastname">Lastname *</label>
<input id="form_lastname" type="text" name="surname" class="form-control" placeholder="Please enter your lastname *" required="required" data-error="Lastname is required." />
<div class="help-block with-errors"></div>
</div>
</div>
</div>
<div class="row">
<div style="padding: 20px;" class="col-md-6">
<div class="form-group">
<label for="form_email">Email *</label>
<input id="form_email" type="email" name="email" class="form-control" placeholder="Please enter your email *" required="required" data-error="Valid email is required." />
<div class="help-block with-errors"></div>
</div>
</div>
<div style="padding: 20px;" class="col-md-6">
<div class="form-group">
<label for="form_need">Please specify your need *</label>
<select id="form_need" name="need" class="form-control" required="required" data-error="Please specify your need.">
<option value=""></option>
<option value="Request Project">Request Project</option>
<option value="Request order status">Recruiter Looking To Recruit</option>
<option value="Other">Other...</option>
</select>
<div class="help-block with-errors"></div>
</div>
</div>
</div>
<div class="row">
<div style="padding: 20px;" class="col-md-12">
<div class="form-group">
<label for="form_message">Message *</label>
<textarea id="form_message" name="message" class="form-control" placeholder="Message for me *" rows="4" required="required" data-error="Please, leave us a message."></textarea>
<div class="help-block with-errors"></div>
</div>
<div class="col-md-12 text-center">
<input id="sendBtn" type="submit" class="btn btn-send" value="Send message" />
</div>
</div>
</div>
<div class="row">
<div style="padding: 20px;" class="col-md-12">
<p class="text-muted">
<strong>*</strong> These fields are required.
</p>
</div>
</div>
</div>
</form>
</div>
</div>
sorry if it isn't properly formatted, I'm on my mobile phone. format on save should do the trick though.