HTML Form not "Posting" user input values to PHP POST Arrary. I am trying to email a form -
HTML Form not "Posting" user input values to PHP POST Arrary. I am trying to email a form - seemingly simple issue: have html form: <form action="submit.php" method="post" enctype="text/plain"> <h3>owner information</h3> first name*: <br /> <input type="text" name="firstname" /><br /> lastly name*: <br /> <input type="text" name="lastname" /><br /><br /> owner on title?*: <br /> <input type="radio" name="titleowner" value="yes" />yes <input type="radio" name="titleowner" value="no" />no<br /><br /> </form> and here submit.php: <?php $admin_email = "aloha@hi.com"; $email = "hey@gmail.com"; $subject = "subject";...