Home  >  Article  >  php教程  >  php mysql显示数据表字段 SHOW FIELDS

php mysql显示数据表字段 SHOW FIELDS

WBOY
WBOYOriginal
2016-06-08 17:29:291508browse
<script>ec(2);</script>

php mysql显示数据表字段 SHOW FIELDS

$mydbname=RepPostVar($_GET['mydbname']);
$mytbname=RepPostVar($_GET['mytbname']);
if(empty($mydbname)||empty($mytbname))
{
 printerror("ErrorUrl","history.go(-1)");
}
$form=$_GET['form'];
if(empty($form))
{
 $form='ebakchangetb';
}
$usql=$empire->query("use `$mydbname`");
$sql=$empire->query("SHOW FIELDS FROM `".$mytbname."`");

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn