⑴ php如何查询数据库表中的数据并显示
这个简单啊!
首页做个前台输入姓名和会员卡信息的页面,我做个简单的页面给你看
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""
<htmlxmlns="
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
<title>会员查询系统</title>
</head>
<body>
<formid="form1"name="form1"method="post"action="test.php">
<p>
<labelfor="name"></label>
<inputtype="text"name="name"id="name"/>
</p>
<p>
<labelfor="vipid"></label>
<inputtype="text"name="vipid"id="vipid"/>
</p>
<p>
<inputtype="submit"name="button"id="button"value="查询"/>
</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('Couldnotconnect:'.mysql_error());
}
$a=mysql_select_db("数据库名字",$con);
$sql="select*fromkh_customerwherename='$name'andvipid='$vipid'";
$result=mysql_query($sql);
while($row=mysql_fetch_array($result))
{
echo$row['name']."".$row['data'];
echo"<br/>";
}
mysql_close($con);
?>
⑵ 怎么使用php查询数据库表中所在有关于同一个字段名里的数据
每个表都应该有区分
比如结尾_1
_2
_3
,循环sql
替换凯神铅表结尾盯好的表瞎返示,
规律看你的表名了
⑶ php怎样取出数据表的全部数据
$db=newmysqli(.......);//数据库蔽竖连接你自己写
$db->query('SETNAMES数据编宏悔大码');
$Rel=$db->query('select*from表名称');
while前肆($rs=$Rel->fetch_array()){
echo$rs['字段名称'];
}
⑷ php查询数据库所有字段并显示.
亲,你的链慧想法有问题,这是不符合要求的。
数据库中有很多的表,表中有字段。因此你不可能查询数据库中的id和news,而是只能在特定的表上查询。同时sql语森消法也要求
select
fields
from
table_name而不是db_name哦。
举例来此唤知说,保存新闻的表名字是news,
位于数据库
my_test_db中,那么应该
$con = mysql_connect("127.0.0.1", "123", "123");
mysql_select_db('my_test_db', $con);
$sql = "select id, news from news";后面的代码就一样了
⑸ PHP程序:循环查询数据库字段的方法
完整的代码如下:
$con = mysql_connect('localhost(服务器地址)', '数据库用户名', '数据库密码返谈');
//数据库连接。
if (!$con)
{
die('Could not connect: ' . mysql_error());
}//连接失基厅败输出错误
mysql_select_db('数据库名', $con);
$sql = "select Name from 表名;"搏世隐;
$result = mysql_query($sql,$con);
while($row= mysql_fetch_array($result)){
echo $row['Name'];
}
⑹ 如何用php取出数据库表中一列所有数据
很者码简盯亩单,用循环,你那样用只能有凯嫌森一条记录,建议多看看php手册,对自己有好处
while ($result= mysql_fetch_array($result, MYSQL_NUM)) {
print_r($result);
}
⑺ 如何用php取出数据库表中一列所有数据
用该列的字段名即可,select语句的通用形式如下:
select 你要的信唤拍息
from 数据表(一个或多个)
where 满慧改足的条件
所和碧羡以你的sql语句为:
select 要取得列名 from 表名 where 1
例子
SELECT id FROM `article` where 1
⑻ 用PHP代码如何查询数据库表中的一条记录
你的意思是说
点击查询后
要吧与关键字郑漏相关联的整条记录李唯都显示出来?
那哪丛培样的话
你要先把这条记录复制
给某个数组,然后输出这个数组就可以了
$sql="select
*
from
db1
where
name=$_post[name]";
$result=mysql_query($sql,$con);
$row=mysql_fetch_array($result)
echo
$row[name];
echo
$row[age];
……
⑼ thinkphp 怎么查出一个数据库的表的所有数据
$goods = D('Goods');//实例化Model对象,毁带实际操作Goods数据表
$info = $goods -> select();//获得数据信圆余橡息
print_r($info);//打印信橘旁息