无为清净楼资源网 Design By www.qnjia.com
上两节我针对guest.php和edit.php作了讲述.需要注意的是php和html的区别:
php通常是-->(1)<? echo("zihanonline");?>
(2)<? php
echo("zihanonline");
?>
(3)<script laanguage="php">
echo("zihanonline");
</script>
(4)<% echo("zihanonline");%>
等4种方式.不要混淆.
下面我们来研究信息管理:manage.php代码.
-----------
//manage.php<html>
<head>
<title>留言管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<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: 9p}
TH {FONT-SIZE: 9pt}
TD {FONT-SIZE: 9pt}
-->
</style>
</head>
<body bgcolor="#FFFFFF" background="back.gif">
<?
include('head.htm');
include("sys.php");
if ($password!=$managepwd and $dispflag)
{
echo "<meta http-equiv=Refresh content=5;url=guest.php>";
echo "<center>";
echo "<font color=red>密码错误!无法删除留言!</font>";
echo "<p>程序将在3秒返回</p>";
echo "<p> <a href=http://zihanonline.longcity.net>子汉在线</a>斑竹维护管理。</p>";
echo "<br>";
echo "</center>";
exit;
}
?>
<table width="445" border="0" align="center" bgcolor="#CCCCCC">
<form method="post" action="manage.php">
<?
if ($dispflag=="show")
{
$content = file($guestfile);
$count =count($content);
$text="";
for ($h=$count;$h>0;$h--)
{
$text=$text.'<tr><td>删除第'.$h."条留言:<input type=checkbox name=check$h value=$h></td></tr>nn";
$text=$text.$content[$h-1];
}
echo "$text";
}
?>
<input type=hidden name=password value=<? echo $password ?
<?
if ($submit)
{
if ($password!=$managepwd)
{
echo "<meta http-equiv=Refresh content=5;url=guest.php>";
echo "<center>";
echo "<font color=red>密码错误!无法删除留言!</font>";
echo "<p>程序将在3秒返回</p>";
echo "<p> <a href=http://zihanonline.longcity.net>子汉在线</a>斑竹维护管理。</p>";
echo "<br>";
echo "</center>";
exit;
}
if ($password==$managepwd)
{
$guest_content=file($guestfile);
$count=count($guest_content);
for ($j=1;$j<=$count;$j++)
{
$del_rec_num="check".$j;
$del_num=$$del_rec_num;
//echo "$del_num:$del_num";
$guest_content[$del_num-1]="";
}
$fp=fopen($guestfile,"w");
for ($i=0;$i<=$count-1;$i++)
{
if ($guest_content[$i]!="")
{
fputs($fp,$guest_content[$i],strlen($guest_content[$i]));
}
}
fclose($fp);
echo "<meta http-equiv=Refresh content=5;url=guest.php>";
echo "<center>";
echo "<p><font color=red>留言已正确删除</font></p>";
echo "<p>程序将在3秒返回</p>";
echo "<p> <a href=http://zihanonline.longcity.net>子汉在线</a>斑竹维护管理。</p>";
echo "<br>";
echo "</center>";
exit;
}
}
?>
<tr>
<td bgcolor="#f0f0f0">
<p align=center>
<input type=submit value=删除 name=submit>
<input type=reset value=重写 name=reset>
</td>
<tr>
</form>
</table>
<?include('bottom.htm');?>
</body>
</html>
------------
未完待续...
php通常是-->(1)<? echo("zihanonline");?>
(2)<? php
echo("zihanonline");
?>
(3)<script laanguage="php">
echo("zihanonline");
</script>
(4)<% echo("zihanonline");%>
等4种方式.不要混淆.
下面我们来研究信息管理:manage.php代码.
-----------
//manage.php<html>
<head>
<title>留言管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<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: 9p}
TH {FONT-SIZE: 9pt}
TD {FONT-SIZE: 9pt}
-->
</style>
</head>
<body bgcolor="#FFFFFF" background="back.gif">
<?
include('head.htm');
include("sys.php");
if ($password!=$managepwd and $dispflag)
{
echo "<meta http-equiv=Refresh content=5;url=guest.php>";
echo "<center>";
echo "<font color=red>密码错误!无法删除留言!</font>";
echo "<p>程序将在3秒返回</p>";
echo "<p> <a href=http://zihanonline.longcity.net>子汉在线</a>斑竹维护管理。</p>";
echo "<br>";
echo "</center>";
exit;
}
?>
<table width="445" border="0" align="center" bgcolor="#CCCCCC">
<form method="post" action="manage.php">
<?
if ($dispflag=="show")
{
$content = file($guestfile);
$count =count($content);
$text="";
for ($h=$count;$h>0;$h--)
{
$text=$text.'<tr><td>删除第'.$h."条留言:<input type=checkbox name=check$h value=$h></td></tr>nn";
$text=$text.$content[$h-1];
}
echo "$text";
}
?>
<input type=hidden name=password value=<? echo $password ?
<?
if ($submit)
{
if ($password!=$managepwd)
{
echo "<meta http-equiv=Refresh content=5;url=guest.php>";
echo "<center>";
echo "<font color=red>密码错误!无法删除留言!</font>";
echo "<p>程序将在3秒返回</p>";
echo "<p> <a href=http://zihanonline.longcity.net>子汉在线</a>斑竹维护管理。</p>";
echo "<br>";
echo "</center>";
exit;
}
if ($password==$managepwd)
{
$guest_content=file($guestfile);
$count=count($guest_content);
for ($j=1;$j<=$count;$j++)
{
$del_rec_num="check".$j;
$del_num=$$del_rec_num;
//echo "$del_num:$del_num";
$guest_content[$del_num-1]="";
}
$fp=fopen($guestfile,"w");
for ($i=0;$i<=$count-1;$i++)
{
if ($guest_content[$i]!="")
{
fputs($fp,$guest_content[$i],strlen($guest_content[$i]));
}
}
fclose($fp);
echo "<meta http-equiv=Refresh content=5;url=guest.php>";
echo "<center>";
echo "<p><font color=red>留言已正确删除</font></p>";
echo "<p>程序将在3秒返回</p>";
echo "<p> <a href=http://zihanonline.longcity.net>子汉在线</a>斑竹维护管理。</p>";
echo "<br>";
echo "</center>";
exit;
}
}
?>
<tr>
<td bgcolor="#f0f0f0">
<p align=center>
<input type=submit value=删除 name=submit>
<input type=reset value=重写 name=reset>
</td>
<tr>
</form>
</table>
<?include('bottom.htm');?>
</body>
</html>
------------
未完待续...
无为清净楼资源网 Design By www.qnjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
无为清净楼资源网 Design By www.qnjia.com
暂无评论...
更新日志
2024年11月15日
2024年11月15日
- 群星《2024好听新歌14》十倍音质 U盘音乐 [WAV分轨][966M]
- s14全球总决赛T1战队队员都有谁 LOLs14全球总决赛T1战队介绍
- 英雄联盟faker身价有10亿吗 英雄联盟faker身价介绍一览
- faker大魔王称号怎么来的 faker大魔王称号来源介绍
- PS5 Pro上的蒂法更美了!博主盛赞新机1000%值得购买
- 腾讯互娱再离职一员大将!或因供应商贪腐
- Ayaneo3游戏掌机预热:旗舰定位、造型圆润自带底键
- 动力火车.1999-背叛情歌【上华】【WAV+CUE】
- 刘力扬.2019-Neon.Lit虹【摩登天空】【FLAC分轨】
- 群星.2002-恋爱物语情歌对唱精选2CD(引进版)【滚石】【WAV+CUE】
- 群星《闽南情24K德国HD金碟》2CD[WAV+CUE]
- 周传雄《恋人创世纪》环球唱片[WAV+CUE]
- 关淑怡-《真假情话K2HD》(日本压制)【WAV+CUE】
- 王菲 -《Faye Wong》雨果LPCD45 [WAV+分轨][1G]
- 陈百强《世纪10星·永恒篇》环球[WAV+CUE][1G]