|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
如果你单纯是为了做网站赚钱,我想你还是别学php的好,去学ASP,JSP好了,毕竟它们有实力雄厚的公司去支持它们。 如今咱们来说一下reply.php的代码:
---------------------------------
//reply.php
<?
function check_strlen_long($txt)
{
$len=strlen($txt);
$count=0;
for ($i=0;$i<$len;$i++)
{
if (ord($txt[$i])<128)
{ $count=$count+1;}
if (ord($txt[$i])==10 or ord($txt[$i])==32)
{$count=0;}
if ($count>=60)
{
$txt[$i]="n";
$count=0;
}
}
return $txt;
}
function encode ($txt)
{
$txt=strip_tags($txt);
$txt=htmlspecialchars($txt);
$message=StripSlashes($txt);
return $message;
}
$content=file("guest.txt");
$disptext=$content[$record-1];
if ($job=="addreply" and $replyname!="" and $replycontent!="")
{
$content=file("guest.txt");
$count=count($content);
$time = date(Y年m月d日H小时i分);
$ip=$REMOTE_ADDR;
$replycontent=StripSlashes($replycontent);
$replyname=encode($replyname);
$replycontent=htmlspecialchars($replycontent);
$replycontent=check_strlen_long($replycontent);
$replycontent=nl2br($replycontent);
$replycontent=ereg_replace(chr(10),"",$replycontent);
$content[$record-1]=substr($content[$record-1],0,strlen($content[$i])-1); $content[$record-1]=$content[$record-1]."<!--reply><tr><td colspan=4><ul><font color=#AB00E1>答复内容:</font><br>".$replycontent."<br>答复人台甫:".$replyname."<br><font color=#CC33FF>工夫:$time 来自:$ip</font></ul><hr size=1 color=blue></td></tr>n";
$fp=fopen("guest.txt","w");
for ($i=0;$i<$count;$i++)
{
fputs($fp,$content[$i],strlen($content[$i]));
}
echo "<meta http-equiv=Refresh content=1;url=guest.php>";
exit;
}
?>
<title>zihanonline</title>
<style>
<!--
A:link {text-decoration: none ; color:0000ff}
A:visited {text-decoration: none; color:004080}
A:active {text-decoration: none}
A:hover {text-decoration: underline; color:ff0000}
BODY {FONT-SIZE: 10p}
TH {FONT-SIZE: 10pt}
TD {FONT-SIZE: 10pt}
-->
</style>
<body bgcolor="#FFFFFF" background="back.gif">
<div align=center >
<? include('head.htm');?>
<table border= 1 width= 65% height= 169 cellpadding="8" cellspacing="0" bordercolor="#E3E3E3" >
<form method= POST action=reply.php >
<?
if ($Submit)
{
if ($replyname=="" or $replycontent=="")
{
echo"<tr align=left valign=middle bgcolor=#F0F0F0> ";
echo"<td width= 100% height= 31 > ";
echo "<font color=red>失足了</font>答复人姓名和答复内容必填!";
echo"</td>";
echo"</tr>";
}
}
?>
<? echo $disptext ?>
<tr align="left" valign="middle" bgcolor="#F0F0F0">
<td width= 100% height= 31 bgcolor="#FFFFFF" > 答复台甫
<input type= text name= replyname size= 20 >
</td>
</tr>
<tr valign="middle">
<td width= 100% height= 26 align= left bgcolor="#f0f0f0" >
<p>答复内容</p>
</td>
</tr>
<tr align="center">
<td width= 100% height= 52 valign= top bgcolor="#FFFFFF" >
<textarea rows= 6 name= replycontent cols= 46 wrap="VIRTUAL" ></textarea>
</td>
</tr>
<tr valign="middle" align="center" bgcolor="#F0F0F0">
<td width= 100% height= 14 bgcolor="#f0f0f0" >
<input type=hidden name=job value=addreply>
<input type=hidden name=record value=<? echo $record ?>>
<input type= submit value= 提交 name=Submit >
<input type=reset value= 重写 name= B2 >
</td>
</tr>
</form>
</table>
<?include('bottom.htm');?>
</div>
</body>
</html>
------------------
到此为止,php的代码咱们已写完,剩下的是您要作一个留言本的本头和底部
您可以设计任何的款式.不外记得在本头下面要有最少3个毗连:检查 前往主页
发邮件.如许您的留言本体系才算完全.不外因为这是一文本的留言本,所以您不必忧虑数据库的成绩,您只需再写一个guest.txt的文件就完全了.固然这个留言本没有mysql等等,可是功效依然不错.并且是完整属于您本人的留言本.好了,下一节咱们将为您讲述guest.txt的创立和上传留言本的几个主要步调.
未完待续...
实现固定数量的几张图片的上传;再如调试软件ZendStudio的使用,看了很多次老师的应用,但总感觉用的不顺手,不懂那么多的数据值,到底哪一个才是真正的问题所在;还有如数据库语句的封装,我只会用简单的函数来进行封装。 |
|