另类留言
时间:2007-02-17 来源:PHP爱好者
对于支持PHP的免费个人主页空间不支持用户的MySQL,怎么编写留言板?其实留言板的编写还有一种很简单的方法,那就是操作文本文件的方式。我在嘻哈免费主页上做了一个,大家可以去留言哦!
写两个PHP文件(note.php和result.php)另外加一个保存留言记录的文本文件(note.txt)。
好了,先看例子:(note.php)
<html>
<head><title>小小留言本</title></head>
<style type="text/css">
<!--
.{ font-family: "宋体"; font-size: 9pt;color:#000000}
-->
</style>
<body bgcolor=#cccccc>
<center><font style=" color=color:#cccccc;font-size:12pt">小小留言本</font></center>
<form method="POST" action="result.php">
<center>
<table border=0 width=80%>
<tr>
<td width=20%>您的大名:
</td>
<td width=80%><input type=text name=nickname style=width:100%>
</td>
</tr>
<tr>
<td width=20%>电子邮件:
</td>
<td width=80%><input type=text name=email style=width:100%>
</td>
</tr>
<tr>
<td width=20%>留言:
</td>
<td width=80%><textarea name=note style=width:100%></textarea>
</td>
</tr>
<tr>
<td width=20%> </td>
<td width=80% align=center><input type="submit" value="确定"><input type="reset" value="重写">
</td>
</tr>
</table>
<hr>
<?
$f = fopen("note.txt","r");
$msg = fread($f,filesize("note.txt"));
fclose($f);
print "$msg";
?>
<p align=right><font style=" color=color:#cccccc;font-size:12pt">作者:<a href="mailto:[email protected]">东方一蛇</a><br>
主页:<a href="http://phpinto.126.com">PHP入门者园地</a></font>
</center>
</body>
</html>
接着,看result.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><br>";
}
else if ($email=="") {
print "<center><b><font color=#FF99FF>您电子邮件?</font><br>";
}
else if ($note=="") {
print "<center><b><font color=#FF99FF>您没有要说的吗?</font><br>";
}else{
print "<p></p>";
$t = date(Y年m月d日);
$note = str_replace ( "<", "<", $note);
$note = str_replace ( ">", ">", $note);
$note = str_replace ( "n", "<br>", $note);
$main = "网上大名:<a href="mailto:$email">$nickname</a>:($t)<br>留言: $note <br><hr>";
$f = fopen("note.txt","a");
fwrite($f,$main);
fclose($f);
print "<center><b><font color=#FF99FF>谢谢您的留言!</font><br>";
}
?>
<p><br></p>
<p><br></p>
<center><a href="note.php">返回</a></center>
<p><br></p>
<p align=right><font style=" color=color:#cccccc;font-size:12pt">作者:<a href="mailto:[email protected]">东方一蛇</a><br>
主页:<a href="http://phpinto.126.com">PHP入门者园地</a></font>
</center>
</body>
</html>
非常全面的一个php技术网站,php爱好者站 http://www.phpfans.net 有相当丰富的文章和源代码.
写两个PHP文件(note.php和result.php)另外加一个保存留言记录的文本文件(note.txt)。
好了,先看例子:(note.php)
<html>
<head><title>小小留言本</title></head>
<style type="text/css">
<!--
.{ font-family: "宋体"; font-size: 9pt;color:#000000}
-->
</style>
<body bgcolor=#cccccc>
<center><font style=" color=color:#cccccc;font-size:12pt">小小留言本</font></center>
<form method="POST" action="result.php">
<center>
<table border=0 width=80%>
<tr>
<td width=20%>您的大名:
</td>
<td width=80%><input type=text name=nickname style=width:100%>
</td>
</tr>
<tr>
<td width=20%>电子邮件:
</td>
<td width=80%><input type=text name=email style=width:100%>
</td>
</tr>
<tr>
<td width=20%>留言:
</td>
<td width=80%><textarea name=note style=width:100%></textarea>
</td>
</tr>
<tr>
<td width=20%> </td>
<td width=80% align=center><input type="submit" value="确定"><input type="reset" value="重写">
</td>
</tr>
</table>
<hr>
<?
$f = fopen("note.txt","r");
$msg = fread($f,filesize("note.txt"));
fclose($f);
print "$msg";
?>
<p align=right><font style=" color=color:#cccccc;font-size:12pt">作者:<a href="mailto:[email protected]">东方一蛇</a><br>
主页:<a href="http://phpinto.126.com">PHP入门者园地</a></font>
</center>
</body>
</html>
接着,看result.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><br>";
}
else if ($email=="") {
print "<center><b><font color=#FF99FF>您电子邮件?</font><br>";
}
else if ($note=="") {
print "<center><b><font color=#FF99FF>您没有要说的吗?</font><br>";
}else{
print "<p></p>";
$t = date(Y年m月d日);
$note = str_replace ( "<", "<", $note);
$note = str_replace ( ">", ">", $note);
$note = str_replace ( "n", "<br>", $note);
$main = "网上大名:<a href="mailto:$email">$nickname</a>:($t)<br>留言: $note <br><hr>";
$f = fopen("note.txt","a");
fwrite($f,$main);
fclose($f);
print "<center><b><font color=#FF99FF>谢谢您的留言!</font><br>";
}
?>
<p><br></p>
<p><br></p>
<center><a href="note.php">返回</a></center>
<p><br></p>
<p align=right><font style=" color=color:#cccccc;font-size:12pt">作者:<a href="mailto:[email protected]">东方一蛇</a><br>
主页:<a href="http://phpinto.126.com">PHP入门者园地</a></font>
</center>
</body>
</html>
非常全面的一个php技术网站,php爱好者站 http://www.phpfans.net 有相当丰富的文章和源代码.
相关阅读 更多 +