0

我如何才能在电子邮件中收到此表格的数据?

<form class="pa">
    <fieldset>
        <label>Name <em>*</em></label>
        <input type="text" placeholder="">
        <label>Email <em>*</em></label>
        <input type="text" placeholder="">
        <label>Age <em>*</em></label>
        <input type="text" placeholder="">
        <label>Phone <em>*</em></label>
        <input type="text" placeholder="">
        <label>Zip Code <em>*</em></label>
        <input type="text" placeholder="">
        <a class="submit pa" href="#"><img src="wp-content/themes/child/img/submit.png"</a>
    </fieldset>
</form>
4

2 回答 2

1

您需要一个服务器端脚本来接受表单数据,并使用它发送电子邮件。你可以做到这一点 PHP 和其他几种语言。从您的示例代码来看,您拥有 WordPress,因此您可能会查看ContactForm 插件

于 2013-04-03T22:58:08.600 回答
0

用类似的东西包装你的输入

<form class="pa" action="yourscript.php" method="post">
    .
    .
    <label for="name">Name <em>*</em></label>
    <input type="text" placeholder="" id="name" name="name">
    .
    <input type="submit" value="Submit" />
    <!-- remove the a tag because that won't submit your form data or use type="image" -->
    <input type="image" src="wp-content/themes/child/img/submit.png" />
</form>

然后用于$_POST['name']检索您必须添加name=''到每个输入以将它们发送到您的脚本的值,例如<input type="text" id="name" name="name">,它们必须不同,否则它们可能会被覆盖。您的标签也需要for=使用例如idinput<label for="name">Name <em>*</em></label>

于 2013-04-03T23:00:47.827 回答