|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
你的确对PHP有兴趣,那么选择教材也是很重要的。 //办理法式chang.php源代码以下:
<? session_start() ?>
<? if($session_power==""||$session_power<1)
{
header("location: ../message.php?redirect=default.php&message=你不是理员");
break;
}?>
<?require ("../opendata.php");?>
<?
if($step=="1")
{
if(!($rs=mysql_fetch_array(mysql_query("select * from download where id='".$id."'",$cn))))
echo "提取材料失足";
else
{
?>
<html>
<head>
<title>修正材料</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head><body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="29"><font size="2">你的地位:<a href="../default.php">首页</a>->><a href="download.php?action=show">下载基地</a>->>修正材料</font></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0" height="446">
<tr>
<td height="335" width="77%" bgcolor="#99cc00">
<table width="100%" border="0" cellspacing="0" cellpadding="0" height="335">
<tr>
<td colspan="2" height="42"> </td>
</tr>
<form method="post" action="chang.php?step=2&id=<?=$id?>">
<tr>
<td height="35" width="19%"><font size="2">软件称号</font></td>
<td height="35" width="81%">
<input name="title" value="<?=$rs["title"];?>" >
</td>
</tr>
<tr>
<td height="36" width="19%"><font size="2">软件地址</font></td>
<td height="36" width="81%">
<input name="url" size="50" value="<?=$rs["url"];?>"
>
</td>
</tr>
<tr>
<td height="34" width="19%"><font size="2">巨细</font></td>
<td height="34" width="81%"> <font size="2">
<input type="text" name="size" size="12" value="<?=$rs["size"]?>">
</font></td>
</tr>
<tr>
<td height="42" width="19%">
<div align="left"><font size="2">分类</font></div>
</td>
<td height="42" width="81%"><font size="2">
<select name="type">
<option <?if($rs["type"]==1) echo "selected"; ?> value="1">暗码破解</option>
<option <?if($rs["type"]==2) echo "selected"; ?> value="2">近程掌握</option>
<option <?if($rs["type"]==3) echo "selected"; ?> value="3">端口扫描</option>
<option <?if($rs["type"]==4) echo "selected"; ?> value="4">字典东西</option>
<option <?if($rs["type"]==5) echo "selected"; ?> value="5">体系平安</option>
<option <?if($rs["type"]==6) echo "selected"; ?> value="6">各类炸弹</option>
<option <?if($rs["type"]==7) echo "selected"; ?> value="7">加密软件</option>
<option <?if($rs["type"]==8) echo "selected"; ?> value="8">源代码</option>
<option <?if($rs["type"]==9) echo "selected"; ?> value="9">其它软件</option>
</select>
</font> </td>
</tr>
<tr>
<td height="31" width="19%"><font size="2">简介:</font></td>
<td height="31" width="81%">
<textarea name="say" cols="50" rows="10"><?=$rs["say"];?></textarea>
</td>
</tr>
<tr>
<td height="37" colspan="2">
<div align="center">
<input type="submit" value="弄定" name="submit">
</div>
</td>
</tr>
</form>
</table>
</td>
</tr>
</table>
</body>
</html>
<?
}
}
if($step=="2")
{
mysql_query("update download set title='".$title."', say='".$say."',url='".$url."',size='".$size."',type='".$type."' where id=".$id,$cn);
header("location:download.php?action=show&type=$type");
}
?>
在相册系统的开发上,因为采用的是团队分工合作方式,更让我明白了在一个团队之中,团队成员之间的交流沟通的重要性,如果没有很好的沟通交流,成员之间的任务没有分配好。 |
|