PHP怎么输出数据?
发布网友
发布时间:2022-04-23 09:24
我来回答
共3个回答
热心网友
时间:2023-06-28 03:48
<?php
$db=mysql_connect( 'localhost', '用户名', '密码' );
mysql_select_db('test',$db);
$query=mysql_query("select * from test");
while($rs=mysql_fetch_array($query))
{
?>
<table>
<tr>
<td><?php echo $rs['id']?></td>
<td><?php echo $rs['title']?></td>
<td><?php echo $rs['content']?></td>
</tr>
</table>
<?php
}
?>
热心网友
时间:2023-06-28 03:49
先连接数据库然后
<table>
<tr>
<td>ID</td>
<td>title</td>
<td>content</td>
</tr>
<?
$sql="select * from user_name";
$res=mysql_query($sql);
while ($arr=mysql_fetch_array($res)){?>
<tr>
<td><? echo $arr[id];?></td>
<td><? echo $arr[title];?></td>
<td><? echo $arr[content];?></td>
</tr>
<? }?>
</table>
热心网友
时间:2023-06-28 03:49
echo
print();
print_r();
var_mp();