PHP 怎么显示数据库中的数据 求源代码17
发布网友
发布时间:2023-10-27 15:42
我来回答
共3个回答
热心网友
时间:2024-12-05 07:59
读数据库,以表格输出的示例代码:
<?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"><tr><td>姓名</td><td>年龄</td></tr>';
while($row = $rows->fetch_assoc()){
echo '<tr><td>'.$row['name'].'</td>';
echo '<td>'.$row['address'].'</td></tr>';
}
?追问能说说什么代码是干啥的吗
追答query('SELECT * FROM customers'); //用sql语句获取数据
echo '姓名年龄'; //输出表格标题
while($row = $rows->fetch_assoc()){ //输出数据库为表格内容
echo ''.$row['name'].'';
echo ''.$row['address'].'';
}
?
热心网友
时间:2024-12-05 07:59
$dbhost = "localhost";//IP
$dbuser = "root";//账号
$dbpassword = "123456";//密码
$dbdatabase = "abc";//数据库
$db = mysql_connect($dbhost, $dbuser, $dbpassword);
mysql_select_db($dbdatabase, $db);
$sql = "SELECT * FROM d ";
$res = mysql_query($sql);
while($arr = mysql_fetch_row($res){ //也可以用mysql_fetch_object
echo $arr[0].$arr[1].$arr[2];//有多少个字段就输出多少
}
热心网友
时间:2024-12-05 07:59
查询出来 输出