我使用模板开发网站。有一个联系表格,我很难使用。我尝试使用从互联网上找到的来源将其设置为发送电子邮件到我想要的地址,但无济于事。
以下是联系表单页面的来源。
<form id="ContactForm">
<div>
<div class="wrapper"> <span>Your Name:</span>
<input type="text" class="input" />
</div>
<div class="wrapper"> <span>Your E-mail:</span>
<input type="text" class="input" />
</div>
<div class="textarea_box"> <span>Your Message:</span>
<textarea name="textarea" cols="1" rows="1"></textarea>
</div>
<a href="#" class="button1"
onClick="document.getElementById('ContactForm').submit()">Send</a>
<a href="#" class="button1"
onClick="document.getElementById('ContactForm').reset()">Clear</a>
</div>
</form>
答案 0 :(得分:1)
php需要每个表单元素的名称才能正确传递变量,所以你需要在每个输入中加上一个名称标签,如
<input type="text" name="name" id="id" />
第二,你需要定义表单动作,如果你要将参数发送到另一个php文件,那么你需要像这样放置php文件源:
<form id="ContactForm" method="post" action="path/to/php">
如果您要将参数发送到同一页面,您可以用<?php $_SERVER["PHP_SELF"] ?>
替换pat / to / php,或者只需输入页面名称。