将数据库数据显示到php 将数据库数据显示到swing窗口页面

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 怎么显示数据库中的数据 求源代码读数据库将数据库数据显示到php,以表格输出将数据库数据显示到php的示例代码将数据库数据显示到php:
?php
header('Content-type:text/html;charset=utf-8');
$db = new mysqli('localhost','root','root','books');
$rows = $db-query('SELECT * FROM customers');
echo 'table border="1"trtd姓名/tdtd年龄/td/tr';
while($row = $rows-fetch_assoc()){
echo 'trtd'.$row['name'].'/td';
echo 'td'.$row['address'].'/td/tr';
}
?
怎么将数据库查询到的数据显示到页面需要三个步骤:第一步,用php连接数据库;
第二步 , 用sql语句查询数据并把查询出来的结果存入到一个数组或对象中 。
第三步,显示数据 。
下面我就用面向过程的编程方式来显示数据 。这里我用网页中的表格来显示数据 。你可以根据你自己的需要来选择显示的方式 。
?php
$conn=mysql_connect("localhost","用户名",”密码“);//连接数据库,用户名、密码即数据库的用户名和密码
mysql_select_db("数据库名");//选择你要查询的数据库的名称
mysql_query(”SET NAMES 'gbk'“);//设置查询的数据库数据编码,根据数据库的编码设置
$sql="select * from user";//比如说你要查询一个用户表user,假设它有三个字段,用户id,用户名username,密码password,
$rs=mysql_query($sql);
?
table width="400" border="1" style="text-align:center"
trth用户ID/thth用户名/thth密码/th/tr
?php
while($row=mysql_fetch_assoc($rs)){
?
trtd?php echo $row['id'];?/tdtd?php echo $row['username'];?/tdtd?php echo $row['password'];?/td/tr
?php
}
?
/table
数据库表格中的数据怎样用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];
如何用php获取数据库信息并显示获取ppq数据库的所有表名的代码:
?php
$server='localhost';
$user='root';
$pass='12345';
$dbname='ppq';
$conn=mysql_connect($server,$user,$pass);

推荐阅读