0

我使用模板来开发网站。里面有一个联系表格,我无法使用。我尝试使用从互联网上找到的来源将其设置为将电子邮件发送到我想要的地址,但无济于事。

这是联系表格页面的来源。

<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>
4

1 回答 1

1

php 需要每个表单元素的名称才能正确传递变量,因此您需要在每个输入中放置一个名称标签,例如

 <input type="text" name="name" id="id" />

其次,您需要定义表单操作,如果您要将参数发送到另一个 php 文件,那么您需要将 php 文件源如下:

<form  id="ContactForm" method="post" action="path/to/php">

如果您将参数发送到同一页面,您可以将 pat/to/php 替换为<?php $_SERVER["PHP_SELF"] ?>或简单地输入页面名称。

于 2013-03-03T17:38:00.413 回答