文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>一个web自动单页提交系统

一个web自动单页提交系统

时间:2007-02-17  来源:PHP爱好者

来源:奥索网

一个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>

";

}

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>

<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);

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爱好者站 http://www.phpfans.net c/vc/c++/java.
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载