|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
培训的第三阶段,开始接触MYSQL,设计数据库,学习PHP如何去连接MYSQL数据库。对于MYSQL,我并不陌生,因为学校开设了Linux系统的课程,对于数据库的操作。 上两节我针对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>
------------
未完待续...
多个成员之间重复做相同的工作,很容易因为交流沟通的时候没有进行一致性的文档要求而出现不明错误,严重影响开发进度,导致在预定时间内无法完成该项目或者完成的项目跟原先计划所要实现的项目功能不符合。 |
|