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.
108 lines
2.7 KiB
108 lines
2.7 KiB
<?php
|
|
define('EmpireCMSAdmin','1');
|
|
require("../../class/connect.php");
|
|
require("../../class/db_sql.php");
|
|
require("../../class/functions.php");
|
|
require("class/functions.php");
|
|
$link=db_connect();
|
|
$empire=new mysqlquery();
|
|
//验证用户
|
|
$lur=is_login();
|
|
$logininid=$lur['userid'];
|
|
$loginin=$lur['username'];
|
|
$loginrnd=$lur['rnd'];
|
|
$loginlevel=$lur['groupid'];
|
|
$loginadminstyleid=$lur['adminstyleid'];
|
|
//ehash
|
|
$ecms_hashur=hReturnEcmsHashStrAll();
|
|
//验证权限
|
|
CheckLevel($logininid,$loginin,$classid,"dbdata");
|
|
//数据库
|
|
$mydbname=RepPostVar($_GET['mydbname']);
|
|
$mytbname=RepPostVar($_GET['mytbname']);
|
|
if(empty($mydbname)||empty($mytbname))
|
|
{
|
|
printerror("NotChangeBakTable","history.go(-1)");
|
|
}
|
|
$form=RepPostVar($_GET['form']);
|
|
if(empty($form))
|
|
{
|
|
$form='ebakchangetb';
|
|
}
|
|
$usql=$empire->usequery("use `$mydbname`");
|
|
$sql=$empire->query("SHOW FIELDS FROM `".$mytbname."`");
|
|
?>
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>表字段列表</title>
|
|
<link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
|
|
<script>
|
|
function ChangeAutoField(f)
|
|
{
|
|
var tbname="<?=$mytbname?>";
|
|
var chstr=tbname+"."+f;
|
|
var r;
|
|
var dh=",";
|
|
var a;
|
|
a=opener.document.<?=$form?>.autofield.value;
|
|
r=a.split(chstr);
|
|
if(r.length!=1)
|
|
{return true;}
|
|
if(a=="")
|
|
{
|
|
dh="";
|
|
}
|
|
opener.document.<?=$form?>.autofield.value+=dh+chstr;
|
|
window.close();
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
|
|
<tr>
|
|
<td>位置:<b><?=$mydbname?>.<?=$mytbname?></b> 字段列表</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
<table width="100%" border="0" cellpadding="3" cellspacing="1" class="tableborder">
|
|
<tr class="header">
|
|
<td height="27"> <div align="center">字段名</div></td>
|
|
<td><div align="center">字段类型</div></td>
|
|
<td><div align="center">字段属性</div></td>
|
|
<td><div align="center">默认值</div></td>
|
|
<td><div align="center">附加属性</div></td>
|
|
</tr>
|
|
<?
|
|
while($r=$empire->fetch($sql))
|
|
{
|
|
$r[Field]="<a href='#ebak' onclick=\"ChangeAutoField('".$r[Field]."');\" title='加入去除自增值字段列表'>$r[Field]</a>";
|
|
?>
|
|
<tr bgcolor="#FFFFFF">
|
|
<td height="27"> <div align="center">
|
|
<?=$r[Field]?>
|
|
</div></td>
|
|
<td> <div align="center">
|
|
<?=$r[Type]?>
|
|
</div></td>
|
|
<td> <div align="center">
|
|
<?=$r[Key]?>
|
|
</div></td>
|
|
<td> <div align="center">
|
|
<?=$r['Default']?>
|
|
</div></td>
|
|
<td> <div align="center">
|
|
<?=$r[Extra]?>
|
|
</div></td>
|
|
</tr>
|
|
<?
|
|
}
|
|
db_close();
|
|
$empire=null;
|
|
?>
|
|
</table>
|
|
<br>
|
|
</body>
|
|
</html>
|
|
|