上两节我针对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>
------------
未完待续...
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
暂无评论...
更新日志
2024年11月25日
2024年11月25日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]