熊猫办公系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

77 lines
2.8 KiB

<?php
if(!defined('InEmpireCMS'))
{
exit();
}
?>
<?php
$public_diyr['pagetitle']='好友分类';
$url="<a href=../../../../>首页</a>&nbsp;>&nbsp;<a href=../../cp/>会员中心</a>&nbsp;>&nbsp;<a href=../../friend/>好友列表</a>&nbsp;>&nbsp;管理分类";
require(ECMS_PATH.'e/template/incfile/header.php');
?>
<script>
function DelFriendClass(cid)
{
var ok;
ok=confirm("确认要删除?");
if(ok)
{
self.location.href='../../doaction.php?enews=DelFriendClass&doing=1&cid='+cid;
}
}
</script>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="84%" valign="top"> <div align="center">
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<form name="form1" method="post" action="../../doaction.php">
<tr class="header">
<td height="25">增加好友分类</td>
</tr>
<tr>
<td height="25" bgcolor="#FFFFFF">分类名称:
<input name="cname" type="text" id="cname"> <input type="submit" name="Submit" value="增加">
<input name="enews" type="hidden" id="enews" value="AddFriendClass">
<input name="doing" type="hidden" id="doing" value="1"></td>
</tr>
</form>
</table>
<br>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<tr class="header">
<td width="10%" height="25"> <div align="center">ID</div></td>
<td width="56%"><div align="center">分类名称</div></td>
<td width="34%"><div align="center">操作</div></td>
</tr>
<?php
while($r=$empire->fetch($sql))
{
?>
<form name=form method=post action=../../doaction.php>
<tr bgcolor="#FFFFFF">
<td height="25"> <div align="center">
<?=$r[cid]?>
</div></td>
<td><div align="center">
<input name="doing" type="hidden" id="doing" value="1">
<input name="enews" type="hidden" id="enews" value="EditFriendClass">
<input name="cid" type="hidden" value="<?=$r[cid]?>">
<input name="cname" type="text" id="cname" value="<?=stripSlashes($r[cname])?>">
</div></td>
<td><div align="center">
<input type="submit" name="Submit2" value="修改">
&nbsp;
<input type="button" name="Submit3" value="删除" onclick="javascript:DelFriendClass(<?=$r[cid]?>);">
</div></td>
</tr>
</form>
<?php
}
?>
</table>
</div></td>
</tr>
</table>
<?php
require(ECMS_PATH.'e/template/incfile/footer.php');
?>