下一篇 » « 上一篇

一个web自动单页提交系统

作者:爱好者    时间:2008-01-22    来源:php之家    点击:1916    本文共1篇文章 字体:[ ]

一个web自动单页提交系统

一个web自动单页提交系统



提交form:

<html>

<head>

<title>Untitled Document</title>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

</head>



<body bgcolor="#006633">

<form method="POST" action="result.php">

<table width="720" border="0" align="center" bgcolor="#D2E7D1">

<tr>

<td>标题:

<input type=text name=nickname size="50">

</td>

</tr>

<tr>

<td>关键字:

<input type=text name=key size="50">

</td>

</tr>

<tr>

<td>

<div align="center">

<p>正文:







<textarea name=note cols="100" rows="20"></textarea>

</p>

</div>

</td>

</tr>



<tr>



<td width=80% align=center><input type="submit" value="确定"><input type="reset"

value="重写">

</td>

</tr>



</table>

</form>

</body>

</html>

php处理程序:

<html>

<head>

<style type="text/css">

<!--

.{ font-family: "宋体"; font-size: 9pt;color:#000000}

-->

</style>

<body bgcolor=#cccccc>

<?

if ($nickname=="") {

print "<center><b><font color=#FF99FF>题目?</font> www.444p.com

";

}

else if ($key=="") {

print "<center><b><font color=#FF99FF>关键字?</font>
";

}

else if ($note=="") {

print "<center><b><font color=#FF99FF>内容?</font>

";

}else{

print "<p></p>";

$t = date(Y年m月d日);





$note = str_replace ( "<", "<", $note);

$note = str_replace ( ">", ">", $note);

$note = str_replace ( "n", "

", $note);



$main = "<html>

<head>

<title>Untitled Document</title>



<meta NAME="key" CONTENT=$key>

<meta NAME="name" CONTENT=$nickname>

</head> 本文来自 www.444p.com



<body bgcolor="#E1F0E9">

<table width="700" border="0" align="center" cellspacing="1" cellpadding="0"

bgcolor="#006633">

<tr bgcolor="#E0F0E8">

<td height="40"><!-- 题目开始 -->$nickname<!-- 题目结束 --></td>

</tr>

<tr bgcolor="#E0F0E8" valign="top">

<td height="338"><!-- 正文开始 -->$note<!-- 正文结束 --></td>

</tr>

</table>

</body>

</html>

";







$fdd=fopen("count.txt","r");

$cdd=fread($fdd,5);

$cdd++;

fclose($fdd);

$fdd=fopen("count.txt","w");

fwrite($fdd,$cdd); php学习之家

fclose($fdd);

$ttt=".html";

$n=$cdd.$ttt;

$f = fopen($n,"a");

fwrite($f,$main);

fclose($f);

print "<center><b><font color=#FF99FF>递交成功</font>

";





}

?>



<p>

</p>

<p>

</p>

<center><a href="input.php">返回</a></center>



</center>

</body>

</html>
php学习之家

发表评论
密码: (游客不需要密码)
记住我【Alt+S 或 Ctrl+Enter 快速提交】

搜索工具


《PHP教程》点击排行