怎么用PHP语言来显示MySQL数据库内容
发布网友
发布时间:2022-04-25 19:13
我来回答
共2个回答
热心网友
时间:2022-04-06 05:24
一般的结构如下:
<?php
if (mysql_connect('127.0.0.1', 'root', '123456')){//注意密码
$sql='select * from try.ty limit 100'; //*100,怕太多了
if ($res=mysql_query($sql)){
echo '<table>';
while($row=mysql_fetch_row($res)){
echo '<Tr><td>'. implode('<td>',$row);
}
mysql_free_result($res);
echo '</table>';
}else 'echo 执行数据库查询失败,SQL语句:'.$sql.'<br>错误信息:'.mysql_error();
mysql_close();
}else echo '数据库连接失败,错误信息:'.mysql_error();
?>
热心网友
时间:2022-04-06 06:42
//关键代码段,链接数据库请网上找资料!
$SELECT="SELECT * FROM ty";
$result=mysql_query($SELECT,$conn);
$i=0;
echo '<table>';
echo '<tr>
<th>ID</th>
<th>A</th>
<th>B</th>
<th>C</th>
<th>D</th>
<th>E</th>
<th>F</th>
<th>G</th>
</tr>';
while( $row=mysql_fetch_array($result) ){
echo '<tr>';
echo '<td>'.$i.'</td>';
echo '<td>'.$row[0].'</td>';
echo '<td>'.$row[1].'</td>';
echo '<td>'.$row[2].'</td>';
echo '<td>'.$row[3].'</td>';
echo '<td>'.$row[4].'</td>';
echo '<td>'.$row[5].'</td>';
echo '<td>'.$row[6].'</td>';
echo '</tr>';
}
echo '</table>';