php查询数据库的表数 php查看数据库中的表

php如何查询数据库表中的数据并显示这个简单?。?
首页做个前台输入姓名和会员卡信息的页面,我做个简单的页面给你看
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
html xmlns="
head
meta http-equiv="Content-Type" content="text/html; charset=utf-8" /
title会员查询系统/title
/head
body
form id="form1" name="form1" method="post" action="test.php"
p
label for="name"/label
input type="text" name="name" id="name" /
/p
p
label for="vipid"/label
input type="text" name="vipid" id="vipid" /
/p
p
input type="submit" name="button" id="button" value="https://www.04ip.com/post/查询" /
/p
/form
/body
/html
然后我给你一个test.php的文件代码:
?php
$name=trim($_POST['name']);
$vipid=trim($_POST['vipid']);
$con = mysql_connect("127.0.0.1","数据库用户名","数据库密码");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
$a=mysql_select_db("数据库名字", $con);
$sql="select * from kh_customer where name = '$name' and vipid = '$vipid'";
$result = mysql_query($sql);
while($row = mysql_fetch_array($result))
{
echo $row['name'] . " " . $row['data'];
echo "br /";
}
mysql_close($con);
?
页面美化自己去搞!只能帮你这么多了
php获取mysql数据库里面的所有数据表信息没这么干过mysql_list_tables获取 所有表信息返回指针mysql_tablename获取表名
myslq_num_rows函数来判断结果指针中的表的数目
?php
mysql_connect("localhost", "mysql_user", "mysql_password");
$result = mysql_list_tables("mydb");
for ($i = 0; $imysql_num_rows($result); $i)
printf ("Table: %s\n", mysql_tablename($result, $i));
mysql_free_result($result);
?这是手册上例子后边的不用我说了吧sql查询
如何用PHP查询一个数据库 有多少张表 多少条记录数 和大?。?/h2>首先php查询数据库的表数,向你介绍一下information_schema 。
information_schema这张数据表保存了MySQL服务器所有数据库的信息 。如数据库名php查询数据库的表数 , 数据库的表,表栏的数据类型与访问权限等 。再简单点,这台MySQL服务器上 , 到底有哪些数据库、各个数据库有哪些表,每张表的字段类型是什么,各个数据库要什么权限才能访问,等等信息都保存在information_schema表里面 。
所以,你需要查表信息应该去这个库查
sql语句是
select * from information_schema.tables where table_schema='dbname';
希望采纳,祝您愉快php查询数据库的表数!
【php查询数据库的表数 php查看数据库中的表】php查询数据库的表数的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于php查看数据库中的表、php查询数据库的表数的信息别忘了在本站进行查找喔 。

    推荐阅读