- 分享
- 0
- 人气
- 0
- 主题
- 6
- 帖子
- 733
- UID
- 29068
- 积分
- 596
- 阅读权限
- 17
- 注册时间
- 2006-3-8
- 最后登录
- 2019-1-1
- 在线时间
- 1572 小时
|
以下是在我的網頁contact page 的form mail 格
網頁是以html+css 寫的,然後我研究來研究去覺得用.php 作爲
這個form mail 的后台執行檔
<div id="contact_form">
<form method="post" name="contact" action="sendmail.php">
<label for="author">Name:</label> <input type="text" id="author" name="author" class="required input_field" />
<div class="cleaner h10"></div>
<label for="email">Email:</label> <input type="text" id="email" name="email" class="validate-email required input_field" />
<div class="cleaner h10"></div>
<label for="subject">Subject:</label> <input type="text" name="subject" id="subject" class="input_field" />
<div class="cleaner h10"></div>
<label for="text">Message:</label> <textarea id="text" name="text" rows="0" cols="0" class="required"></textarea>
<div class="cleaner h10"></div>
<input type="submit" value="Send" id="submit" name="submit" class="submit_btn float_l" />
<input type="reset" value="Reset" id="reset" name="reset" class="submit_btn float_r" />
</form>
</div>
==================================================================
然後下面是sendmail.php 的内容
<?php
$to = "XXXXX@yahoo.com";
$subject = "Inquiry from ".$_POST['author'];
$name_field = $_POST['author'];
$email_field = $_POST['email'];
$message = $_POST['message'];
$headers = 'From: '.$_POST['email'].'' . "\r\n" .
'Reply-To: '.$_POST['email'].'' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
$body = $message;
mail($to, $subject, $body, $headers );
header( 'Location: http://www.XXXXXX.com' ) ; //replace with landing page.
?>
各位大大幫忙看一下,我在dreamweaver 執行時一壓submit 他會跳到sendmail.php ,然後一片空白。
我還不敢上載去server 怕一樣的情況。。。
還是我用js 比較簡單? |
|