php读取数据库前三条,php读取数据库前三条内容
PHP读取数据库问题
echo"table";
创新互联-专业网站定制、快速模板网站建设、高性价比普定网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式普定网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖普定地区。费用合理售后完善,10年实体公司更值得信赖。
echo"trtd字段1/tdtd 字段2/tdtd字段3/td/tr";
while($res=mysql_fetch_array($result)){
$rows=mysql_num_rows($result);//符合条件
for($i=0;$icount($rows);$i++)
{
echo"trtd$res[字段1]/tdtd $res[字段2]/tdtd$res[字段3]/td/tr";// 输出你想到的字段
}
}
echo"/table";
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读取数据库显示在页面上的内容实现每3条自动换行
while
前面+个
$count
=
;
while(...){
$count
++;
...
...
..
if($count%3==0){
echo
"br
/";//换行什么的
}
}
table做的不太好调。最好用div+css,然后控制一下这个区域的最大宽度就行。
php+mysql如何读取数据库数据
大概的基本流程如下:
连接数据库,再加一个判断。
选择数据库
读取表
输出表中数据
下面是代码:
?php
$con = mysql_connect("localhost","root","abc123");
/* localhost 是服务器 root 是用户名 abc123 是密码*/
if (!$con)
{
die("数据库服务器连接失败");
}
/* 这就是一个逻辑非判断,如果错误就输出括号里的字符串 */
@mysql_select_db("a", $con);
/* 选择mysql服务器里的一个数据库,假设你的数据库名为 a*/
$sql = "SELECT * FROM qq";
/* 定义变量sql, "SELECT * FROM qq" 是SQL指令,表示选取表qq中的数据 */
$result = mysql_query($sql); //执行SQL语句,获得结果集
/*下面就是选择性的输出打印了,由于不清楚你的具体情况给你个表格打印吧*/
//打印表格
echo "table border=1";
while( $row = mysql_fetch_array($result) )
/*逐行获取结果集中的记录,得到数组row */
{
/*数组row的下标对应着数据库中的字段值 */
$id = $row['id'];
$name = $row['name'];
$sex = $row['sex'];
echo "tr";
echo "td$id/td";
echo "td$name/td";
echo "td$sex/td";
echo "/tr";
}
echo "table /";
?
如果你的switch是表头,就定义这个表头字段,然后输出。
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读取数据库前三条,php读取数据库前三条内容
转载注明:http://scyanting.com/article/hcgopd.html