php数据库取前面 php从数据库取数据输出到表格

php查询MYSQL数据库 前5条内容 并显示出来?php
header("content-type:text/html;charset=utf-8");
$conn = mysql_connect('localhost','root','123456');
mysql_select_db('dbname',$conn);
mysql_query("set names utf8");
$sql = "select infoname from tablename limit 5 order by id desc";
$res = mysql_query($sql,$conn);
echo "html";
echo "head";
echo "/head";
echo "body";
echo "ul";
while($row = mysql_fetch_assoc($res)){
echo "li".$row['infoname']."/li";
}
echo "/ul";
echo "/body";
echo "/html";
mysql_free_result($res);
mysql_close($conn);
?
php读取mysql数据库表的前20条记录 , 然后分两行显示,每行10条记录,怎么编?$result= mysql_query('select * from mytable limit 0, 20');
$i= 0;
while ($rs = mysql_fetch_array($result))
{
echo $rs['myfield'].' ';
$i;
if ($i == 10)
{
echo 'br /';
}
}
将PHP文件取出的数据库数据显示在前端HTML文件某个div中的几种方法第一种php数据库取前面,使用smarty模板引擎
php文件:
$smarty-assign('data','hello world');
$smarty-display('index.html');
index.html文件php数据库取前面:
div{$data}/div
输出hello world
第二种 , 使用PHP变量直接输出
php文件php数据库取前面:
$data = 'https://www.04ip.com/post/hello world';
require 'index.html';
index.html:文件php数据库取前面:
div?php echo $data;?/div
php查询数据库的前5条数据,用数组存起来为了便于随时echo , 存为字符串最好,一般的代码如下:
$sql='select * from xxx order by xxid desc limit 5';//limit 5表示只取5个,order by xxxid desc表示按xxxid降序排列,可以显示最新的5个
$res=mysql_query($sql);
$str5='';//保存的结果
while($row=mysql_fetch_array($res)) $str5.=$row[0].‘br';//可能你需要修改这一句,控制显示格式
mysql_free_result($res);
以后你就可以随时echo $str5了 。
如何用php读取数据库第一条信息?连接数据库我就不说了 , 直接给你SQL语句
$sql = "select * from table limit 1"
【php数据库取前面 php从数据库取数据输出到表格】php数据库取前面的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于php从数据库取数据输出到表格、php数据库取前面的信息别忘了在本站进行查找喔 。

    推荐阅读