Not sure if I'm doing this right. Completely new to this stuff... I have a multistep form that I'm trying to get submitted to my email. The form has a set of buttons in each phase. I'd like the selected buttons to be sent to my email.
HTML:
<fieldset id="secondField">
<h2 class="fs-title"> Select A Course</h2>
<input type="button" name="course" class="next action-button" value="Math" />
<input type="button" name="course" class="next action-button" value="Science" />
</fieldset>
PHP
<?php
// from the form
$course = trim(strip_tags($_POST['course']));
$count = trim(strip_tags($_POST['count']));
// set here
$subject = "Course Request";
$to = 'email';
$body = <<<HTML
COURSE: $course
PARTICIPANTS: $count