<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>赵健在这里！ &#187; 表单</title>
	<atom:link href="http://www.zhaojian.net/tag/%e8%a1%a8%e5%8d%95/feed" rel="self" type="application/rss+xml" />
	<link>http://www.zhaojian.net</link>
	<description>专注于Linux&#124;Apache&#124;MySQL&#124;PHP等开源技术的学习与研究</description>
	<lastBuildDate>Mon, 23 Aug 2010 02:57:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>PHP写的提交表单到E-mail邮箱程序</title>
		<link>http://www.zhaojian.net/phpjishu/phpxie-de-ti-jiao-biao-dan-dao-e-mailyou-xiang-cheng-xu.html</link>
		<comments>http://www.zhaojian.net/phpjishu/phpxie-de-ti-jiao-biao-dan-dao-e-mailyou-xiang-cheng-xu.html#comments</comments>
		<pubDate>Mon, 08 Mar 2010 06:16:39 +0000</pubDate>
		<dc:creator>赵健</dc:creator>
				<category><![CDATA[PHP技术]]></category>
		<category><![CDATA[E-mail]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php mail]]></category>
		<category><![CDATA[php发送到邮箱]]></category>
		<category><![CDATA[smtp]]></category>
		<category><![CDATA[提交]]></category>
		<category><![CDATA[表单]]></category>
		<category><![CDATA[邮箱]]></category>

		<guid isPermaLink="false">http://www.zhaojian.net/?p=759</guid>
		<description><![CDATA[最近网站改版，想弄一个在线提交表单到邮箱的程序，找了很多都用不了，最后自己研究了一个。 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161&#60;html&#62; &#60;body&#62; &#60;?php function spamcheck($field) &#160; { &#160; //filter_var() sanitizes the e-mail &#160; //address using FILTER_SANITIZE_EMAIL &#160; $field=filter_var($field, FILTER_SANITIZE_EMAIL); &#160; &#160; //filter_var() validates the e-mail &#160; //address using FILTER_VALIDATE_EMAIL &#160; if(filter_var($field, FILTER_VALIDATE_EMAIL)) &#160; &#160; { &#160; &#160; return TRUE; &#160; &#160; } &#160; else &#160; &#160; { &#160; &#160; return FALSE; &#160; &#160; } [...]]]></description>
			<content:encoded><![CDATA[<p>最近网站改版，想弄一个在线<span class='wp_keywordlink_affiliate'><a href="http://www.zhaojian.net/tag/%e6%8f%90%e4%ba%a4" title="查看 提交 的全部文章" target="_blank">提交</a></span><span class='wp_keywordlink_affiliate'><a href="http://www.zhaojian.net/tag/%e8%a1%a8%e5%8d%95" title="查看 表单 的全部文章" target="_blank">表单</a></span>到<span class='wp_keywordlink_affiliate'><a href="http://www.zhaojian.net/tag/%e9%82%ae%e7%ae%b1" title="查看 邮箱 的全部文章" target="_blank">邮箱</a></span>的程序，找了很多都用不了，最后自己研究了一个。</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:500px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br />37<br />38<br />39<br />40<br />41<br />42<br />43<br />44<br />45<br />46<br />47<br />48<br />49<br />50<br />51<br />52<br />53<br />54<br />55<br />56<br />57<br />58<br />59<br />60<br />61<br />62<br />63<br />64<br />65<br />66<br />67<br />68<br />69<br />70<br />71<br />72<br />73<br />74<br />75<br />76<br />77<br />78<br />79<br />80<br />81<br />82<br />83<br />84<br />85<br />86<br />87<br />88<br />89<br />90<br />91<br />92<br />93<br />94<br />95<br />96<br />97<br />98<br />99<br />100<br />101<br />102<br />103<br />104<br />105<br />106<br />107<br />108<br />109<br />110<br />111<br />112<br />113<br />114<br />115<br />116<br />117<br />118<br />119<br />120<br />121<br />122<br />123<br />124<br />125<br />126<br />127<br />128<br />129<br />130<br />131<br />132<br />133<br />134<br />135<br />136<br />137<br />138<br />139<br />140<br />141<br />142<br />143<br />144<br />145<br />146<br />147<br />148<br />149<br />150<br />151<br />152<br />153<br />154<br />155<br />156<br />157<br />158<br />159<br />160<br />161<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;html&gt;<br />
&lt;body&gt;<br />
&lt;?php<br />
function spamcheck($field)<br />
&nbsp; {<br />
&nbsp; //filter_var() sanitizes the e-mail <br />
&nbsp; //address using FILTER_SANITIZE_EMAIL<br />
&nbsp; $field=filter_var($field, FILTER_SANITIZE_EMAIL);<br />
&nbsp; <br />
&nbsp; //filter_var() validates the e-mail<br />
&nbsp; //address using FILTER_VALIDATE_EMAIL<br />
&nbsp; if(filter_var($field, FILTER_VALIDATE_EMAIL))<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; return TRUE;<br />
&nbsp; &nbsp; }<br />
&nbsp; else<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; return FALSE;<br />
&nbsp; &nbsp; }<br />
&nbsp; }<br />
<br />
if (isset($_REQUEST['w_14']))<br />
&nbsp; {//if &quot;email&quot; is filled out, proceed<br />
<br />
&nbsp; //check if the email address is invalid<br />
&nbsp; $mailcheck = spamcheck($_REQUEST['w_14']);<br />
&nbsp; $w_1_check = $_REQUEST['w_1'];<br />
&nbsp; $w_8_check = $_REQUEST['w_8'];<br />
&nbsp; $w_13_check = $_REQUEST['w_13'];<br />
&nbsp; if ($mailcheck==FALSE)<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; echo &quot;&lt;script language=\&quot;JavaScript\&quot;&gt;\r\n&quot;; <br />
&nbsp; &nbsp; echo &quot; alert(\&quot;请您认真填写 E-Mail，以便工作人员与您取得联系。谢谢合作！\&quot;);\r\n&quot;; <br />
&nbsp; &nbsp; echo &quot; history.back();\r\n&quot;; <br />
&nbsp; &nbsp; echo &quot;&lt;/script&gt;&quot;; <br />
&nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ($w_1_check=='')<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; echo &quot;&lt;script language=\&quot;JavaScript\&quot;&gt;\r\n&quot;; <br />
&nbsp; &nbsp; echo &quot; alert(\&quot;请您认真填写公司名称，以便工作人员与您取得联系。谢谢合作！\&quot;);\r\n&quot;; <br />
&nbsp; &nbsp; echo &quot; history.back();\r\n&quot;; <br />
&nbsp; &nbsp; echo &quot;&lt;/script&gt;&quot;; <br />
&nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ($w_8_check=='')<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; echo &quot;&lt;script language=\&quot;JavaScript\&quot;&gt;\r\n&quot;; <br />
&nbsp; &nbsp; echo &quot; alert(\&quot;请您认真填写姓名，以便工作人员与您取得联系。谢谢合作！\&quot;);\r\n&quot;; <br />
&nbsp; &nbsp; echo &quot; history.back();\r\n&quot;; <br />
&nbsp; &nbsp; echo &quot;&lt;/script&gt;&quot;; <br />
&nbsp; &nbsp; } &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if ($w_13_check=='')<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; echo &quot;&lt;script language=\&quot;JavaScript\&quot;&gt;\r\n&quot;; <br />
&nbsp; &nbsp; echo &quot; alert(\&quot;请您认真填写QQ/MSN号码，以便工作人员与您取得联系。谢谢合作！\&quot;);\r\n&quot;; <br />
&nbsp; &nbsp; echo &quot; history.back();\r\n&quot;; <br />
&nbsp; &nbsp; echo &quot;&lt;/script&gt;&quot;; <br />
&nbsp; &nbsp; }<br />
&nbsp; else<br />
&nbsp; &nbsp; {//send email<br />
&nbsp; &nbsp; $email = $_REQUEST['w_14'] ; <br />
&nbsp; &nbsp; $subject = $_REQUEST['w_1'] . &quot; &quot; . $_REQUEST['w_8'] ;<br />
&nbsp; &nbsp; $message = &quot;公司名称 :&quot;. $_REQUEST['w_1'] . &quot;\r\n&quot; . &quot;网页语种 :&quot;. $_REQUEST['w_2_1'] . &quot;/&quot; . $_REQUEST['w_2_2'] . &quot;/&quot; . $_REQUEST['w_2_3'] . &quot;/&quot; . $_REQUEST['w_2_4'] . &quot;/&quot; . $_REQUEST['w_2_5'] . &quot;/&quot; . &quot;\r\n&quot; . &quot;需要借鉴的站点 :&quot;. $_REQUEST['w_3'] . &quot;\r\n&quot; . &quot;主要业务介绍 :&quot;. $_REQUEST['w_4'] . &quot;\r\n&quot; . &quot;建站费用预算 :&quot;. $_REQUEST['w_5'] . &quot;-&quot; . $_REQUEST['w_6'] . &quot;\r\n&quot; . &quot;要求建站完成时间 :&quot;. &quot;希望完工的日期&quot; . $_REQUEST['w_7'] . &quot;\r\n&quot; . &quot; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;希望完工的天数&quot; . $_REQUEST['w_7_1'] . &quot;\r\n&quot; . &quot;网站建设其他要求 :&quot;. $_REQUEST['w_7_2'] . &quot;\r\n&quot; . &quot;=============================================================&quot; . &quot;\r\n&quot; . &quot;姓名 :&quot;. $_REQUEST['w_8'] . &quot;\r\n&quot; . &quot;性别 :&quot;. $_REQUEST['w_9'] . &quot;\r\n&quot; . &quot;电话 :&quot;. $_REQUEST['w_11'] . &quot;\r\n&quot; . &quot;手机 :&quot;. $_REQUEST['w_12'] . &quot;\r\n&quot; . &quot;QQ/MSN :&quot;. $_REQUEST['w_13'] . &quot;\r\n&quot; . &quot;电子邮箱 :&quot;. $_REQUEST['w_14'] . &quot;\r\n&quot; . &quot;Skype :&quot;. $_REQUEST['w_15'] . &quot;\r\n&quot; . &quot;邮编 :&quot;. $_REQUEST['w_16'] . &quot;\r\n&quot; . &quot;详细地址 :&quot;. $_REQUEST['w_17'] . &quot;\r\n&quot;;<br />
&nbsp; &nbsp; mail(&quot;jinpaiwww@126.com&quot;, &quot;$subject 填写的网站建设意向表。&quot;,<br />
&nbsp; &nbsp; $message, &quot;From: $email&quot;);<br />
&nbsp; &nbsp; echo &quot;&lt;script language=\&quot;JavaScript\&quot;&gt;\r\n&quot;; &nbsp; <br />
&nbsp; &nbsp; echo &quot;alert(\&quot;信息提交成功！请等待工作人员与您取得联系。自动返回首页\&quot;);\r\n&quot;; &nbsp; <br />
&nbsp; &nbsp; echo &quot;location.replace(\&quot;http://www.jinpaiwww.com/\&quot;);\r\n&quot;; &nbsp; <br />
&nbsp; &nbsp; echo &quot;&lt;/script&gt;&quot;;<br />
&nbsp; &nbsp; }<br />
&nbsp; }<br />
else<br />
&nbsp; {//if &quot;email&quot; is not filled out, display the form<br />
&nbsp; echo &quot;&lt;form id='form1' action='http://www.jinpaiwww.com/b/b.php' method='post' name='form1'&gt;<br />
&nbsp; &nbsp; &lt;table class='table_1' cellspacing='0' cellpadding='0' width='675' border='0'&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;tbody&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;th colspan='2'&gt;网站建设申请表&lt;/th&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_1' width='125'&gt;公司名称&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_2' width='550'&gt;&lt;input class='input_text' style='width: 300px' name='w_1' type='text' /&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_1' width='125'&gt;网页语种&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_2' width='550'&gt;&lt;input type='checkbox' checked='checked' name='w_2_1' value='中文简体' /&gt; &lt;label for='w_2_1'&gt;中文简体&lt;/label&gt; &lt;input type='checkbox' name='w_2_2' value='中文繁体' /&gt; &lt;label for='w_2_2'&gt;中文繁体&lt;/label&gt; &lt;input type='checkbox' name='w_2_3' value='英文' /&gt; &lt;label for='w_2_3'&gt;英文&lt;/label&gt; &lt;input type='checkbox' name='w_2_4' value='日文' /&gt; &lt;label for='w_2_4'&gt;日文&lt;/label&gt; &lt;input type='checkbox' name='w_2_５' value='其它语言' /&gt; &lt;label for='w_2_5'&gt;其它语言&lt;/label&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_1' width='125'&gt;希望借鉴的站点&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_2' width='550'&gt;&lt;input style='width: 300px' name='w_3' type='text' /&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_1' width='125'&gt;主要业务介绍&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_2' width='550'&gt;&lt;textarea class='input_text' style='width: 300px' name='w_4'&gt;&lt;/textarea&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_1' width='125'&gt;建站费用预算&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_2' width='550'&gt;&lt;input class='input_text' name='w_5' type='text' /&gt; -- &lt;input class='input_text' name='w_6' type='text' /&gt; 元&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_1' width='125'&gt;要求建站完成时间&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_2' width='550'&gt;&lt;input class='input_text' name='w_7' value='希望完工的日期' type='text' /&gt; &lt;input class='input_text' name='w_7_1' value='希望完工的天数' type='text' /&gt; 天&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_1' width='125'&gt;网站建设其它要求&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_2' width='550'&gt;&lt;textarea class='input_text' style='width: 300px' name='w_7_2'&gt;&lt;/textarea&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/tbody&gt;<br />
&nbsp; &nbsp; &lt;/table&gt;<br />
&nbsp; &nbsp; &lt;table class='table_1' cellspacing='0' cellpadding='0' width='675' border='0'&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;tbody&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;th colspan='4'&gt;联系人信息&lt;/th&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_1' width='129'&gt;姓　　名&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_2' width='202'&gt;&lt;input name='w_8' type='text' /&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_1' width='96'&gt;性　　别&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_2' width='246'&gt;&lt;input type='radio' checked='checked' name='w_9' value='小姐' /&gt;小姐 &lt;input type='radio' name='w_9' value='先生' /&gt;先生&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_1' align='left'&gt;电　　话&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_2'&gt;&lt;input class='input_text' name='w_11' type='text' /&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_1'&gt;手　　机&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_2'&gt;&lt;input name='w_12' type='text' /&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_1'&gt;QQ / MSN&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_2'&gt;&lt;input class='input_text' name='w_13' type='text' /&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_1'&gt;电子邮箱&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_2'&gt;&lt;input name='w_14' type='text' /&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_1'&gt;Skype&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_2'&gt;&lt;input class='input_text' name='w_15' type='text' /&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_1'&gt;邮　　编&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_2'&gt;&lt;input name='w_16' type='text' /&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_1'&gt;详细地址&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_2'&gt;&lt;input name='w_17' type='text' /&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_1'&gt;公司地址&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_2'&gt;&lt;input name='w_172' type='text' /&gt;&lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/tbody&gt;<br />
&nbsp; &nbsp; &lt;/table&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &lt;table class='table_1' cellspacing='0' cellpadding='0' width='675' border='0'&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;tbody&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;td class='input_2'&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;div align='center'&gt;&lt;input id='send_mail_agent' type='submit' name='w_18' value='Submit' /&gt;&lt;/div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/td&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/tr&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/tbody&gt;<br />
&nbsp; &nbsp; &lt;/table&gt;<br />
&nbsp; &lt;/form&gt;&quot;;<br />
&nbsp; }<br />
?&gt;<br />
<br />
&lt;/body&gt;<br />
&lt;/html&gt;</div></td></tr></tbody></table></div>

	标签：<a href="http://www.zhaojian.net/tag/e-mail" title="E-mail" rel="tag">E-mail</a>, <a href="http://www.zhaojian.net/tag/php" title="PHP" rel="tag">PHP</a>, <a href="http://www.zhaojian.net/tag/php-mail" title="php mail" rel="tag">php mail</a>, <a href="http://www.zhaojian.net/tag/php%e5%8f%91%e9%80%81%e5%88%b0%e9%82%ae%e7%ae%b1" title="php发送到邮箱" rel="tag">php发送到邮箱</a>, <a href="http://www.zhaojian.net/tag/smtp" title="smtp" rel="tag">smtp</a>, <a href="http://www.zhaojian.net/tag/%e6%8f%90%e4%ba%a4" title="提交" rel="tag">提交</a>, <a href="http://www.zhaojian.net/tag/%e8%a1%a8%e5%8d%95" title="表单" rel="tag">表单</a>, <a href="http://www.zhaojian.net/tag/%e9%82%ae%e7%ae%b1" title="邮箱" rel="tag">邮箱</a><br />

	<h4>相关日志</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.zhaojian.net/linuxjishu/windows-2003xia-iisphpmysqlzend-optimizergdku-phpmyadminan-zhuang-pei-zhi.html" title="Windows 2003下IIS+PHP+MySQL+Zend Optimizer+GD库+phpMyAdmin安装配置 (2009年04月24日)">Windows 2003下IIS+PHP+MySQL+Zend Optimizer+GD库+phpMyAdmin安装配置</a> (0)</li>
	<li><a href="http://www.zhaojian.net/phpjishu/php-undefined-indexhe-undefined-variablede-jie-jue-fang-fa.html" title="php Undefined index和Undefined variable的解决方法 (2009年09月20日)">php Undefined index和Undefined variable的解决方法</a> (1)</li>
	<li><a href="http://www.zhaojian.net/diannaowangluo/di-guo-cmsfen-lei-xin-xi-wang-jing-fang-zhu-hai-sou-wang-mo-ban.html" title="帝国CMS分类信息网精仿珠海搜网模板 (2010年08月23日)">帝国CMS分类信息网精仿珠海搜网模板</a> (0)</li>
	<li><a href="http://www.zhaojian.net/mianfeiziyuan/tui-jian-yi-ge-de-guo-10gke-bang-mi-mian-fei-phpkong-jian.html" title="推荐一个德国10G可绑米免费PHP空间 (2009年12月9日)">推荐一个德国10G可绑米免费PHP空间</a> (1)</li>
	<li><a href="http://www.zhaojian.net/mianfeiziyuan/tui-jian-ge-mian-fei-phpkong-jian-123bemyhost-5-5g-vistapanelmian-ban.html" title="推荐个免费PHP空间123bemyhost 5.5G vistapanel面板 (2009年11月25日)">推荐个免费PHP空间123bemyhost 5.5G vistapanel面板</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.zhaojian.net/phpjishu/phpxie-de-ti-jiao-biao-dan-dao-e-mailyou-xiang-cheng-xu.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->