I recently signed up to GoDaddy cPanel hosting and wanted my simple contact form live on my contact page. Here is the code for the form:
<div class "col-md-12">
<form id="contact_form" action="#" method="POST" enctype="multipart/form-data">
<div class="row">
<input id="name" class="input" name="name" type="text" value="" size="30" placeholder="Name." /><br />
</div>
<br>
<div class="row">
<input id="email" class="input" name="email" type="text" value="" size="30" placeholder="Email." /><br />
</div>
<br>
<div class="row">
<textarea id="message" class="input" name="message" rows="7" cols="30" placeholder="Message."></textarea><br />
</div>
<input id="submit_button" type="submit" value="Submit." />
</form>
</div>
I understand PHP is involved but I just need a push in the direction of what to include. The styling is also very basic.