談?wù)凱HP語法(5)
發(fā)表時(shí)間:2024-05-29 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]正文: 網(wǎng)上發(fā)送Email,可要用到mail()函數(shù)了。其格式如下: mail(收信人,主題,內(nèi)容,郵件文件頭); 在網(wǎng)上,發(fā)送Email給站長(zhǎng),通常是這樣的:<a href="mailto:webmaster@163.com">webmaster@16...
正文:
網(wǎng)上發(fā)送Email,可要用到mail()函數(shù)了。其格式如下:
mail(收信人,主題,內(nèi)容,郵件文件頭);
在網(wǎng)上,發(fā)送Email給站長(zhǎng),通常是這樣的:<a href="mailto:webmaster@163.com">webmaster@163.com</a> 這樣,當(dāng)點(diǎn)擊了webmaste崐r@163.com這個(gè)鏈接之后,就會(huì)啟動(dòng)默認(rèn)的郵件編緝器來寫Email,實(shí)在是麻煩,使用mail()函數(shù),便可方便地編出一個(gè)在線發(fā)信頁面。這種崐頁面的收件人是固定的(webmaster@163.com),有需再填收件人地址了,而主題我們也可以將把它定下來。如下例:
文件:email.html
<html>
<head>
<title>發(fā)信給網(wǎng)管</title>
</head>
<body>
<h2 align="center">網(wǎng)管收信</h2><br>
<hr><br>
<center>
<form action="mail.php">
發(fā)件人:<input type="text" name="from" size=25><br>
主題:<input type="text" name="subject" size=20><br>
內(nèi)容:
<textarea name="content" cols=80 rows=15>你好,站長(zhǎng):</textarea><br>
<input type="submit" value="寄出"> <input type="reset" value="重寫"><br>
</form>
</body></html>
文件:mail.php
<?php
if (empty($from) or empty($subject) or empty($content)) {echo "沒有完成填寫,請(qǐng)<a href="email.html">返回</a>";}
$body="[主題] $subjectn";
$body.="[發(fā)件人] $fromn";
$body.=$content;
$deal=mail("webmaster@163.com",$subject,$body,"From:$from");
if ($deal) {echo "寄件成功!";}else{echo "寄件失。。!";}
?>
PHP介紹到此,也差不多了,你是不是感到了PHP的強(qiáng)大,是不是也想加入PHP的行列,就現(xiàn)在吧。要使自己在PHP中飛翔,這點(diǎn)知識(shí)還是崐不足的,它只能幫你入門而已。入門之后,就修行在個(gè)人了。我的朋友,再見──(^_^)
--(全文完)--