Home > Backend Development > PHP Tutorial > 怎么让数据显示不重复,只显示最新数据

怎么让数据显示不重复,只显示最新数据

WBOY
Release: 2016-06-13 12:07:43
Original
1835 people have browsed it

如何让数据显示不重复,只显示最新数据
用PHP查询数据库,但数据重复显示,如何能让数据不重复如下图:


自编号0193 06:25:35状态显示完成,但11:25:35也显示完成,如何能让同一版本号数据只显示最新的,


网页代码如下:
nbsp;html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
 


 数据查询
 
 

 

 


 


                  
媒体版本号:
                   
选择线路
                 
                  选择状态
                 
                  
                  
                  

         
 

  if($_REQUEST['submit']!="")
 {
 $link=mysql_connect("127.0.0.1","root","12345678");   
 if(!$link) echo "没有连接成功!";   
else echo "连接成功!";   
mysql_select_db("busap", $link);          //选择数据库  

 //控制查询条件

$q = "SELECT * FROM research where banben like '%{$_REQUEST['banben']}%' AND linename like '%{$_REQUEST['xianlu']}%' AND zhuangtai like '%{$_REQUEST['zhuangtai']}%' order by busname asc";   
  
 // mysql_query("SET NAMES GB2312"); //防止乱码
$rs = mysql_query($q); //获取数据集
$assoc= mysql_num_rows($rs);///影响的行数 , 原来用了mysql_fetch_assoc
 echo "$assoc"; 

 $row=mysql_fetch_array($rs); //只需要补充回这一行. 

if(!$rs){die("Valid result!");}
 }
 ?>
 
   
     
     
     
     
     
     
     
     
     
   
          
        if($_REQUEST['submit']!="")
 {
 do { ?>

if($row[4]=="0")
线路
中心编号
线路
车辆自编号
传输方式
媒体版本
日期
时间
状态
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template