Hello,
I have this inquiry form. I wish to capture the fields and email via php script. Can anyone help me in doing that?
It uses html text field, select and textarea form elements.. In select name I wish to capture and email the option selected.
<form action="#" method="get" name="form1">
<label for="name">Name:</label><input name="name" type="text" /><br /><br />
<label for="email">Email:</label><input name="email" type="text" /><br /><br />
<label for="phone">Phone:</label><input name="phone" type="text" /><br /><br />
<label for="cmcenquiryform">Enquiry For:</label>
<select name="cmcenquiryform">
<option>Joining Courses</option>
<option>Franchisee</option>
<option>Corporate Training</option>
<option>Others</option>
</select><br /><br />
<label for="query">Query:</label><textarea name="query" cols="25" rows="5"></textarea><br /><br />
<input name="enquire" type="submit" value="Enquire Now!" class="submit"/><br /><br />
</form>
Thanks a million in advance
Best Regards
K G