Home > Backend Development > PHP Tutorial > 怎么通过列表中某一个属性来显示具有相同属性的内容

怎么通过列表中某一个属性来显示具有相同属性的内容

WBOY
Release: 2016-06-13 12:46:03
Original
806 people have browsed it

如何通过列表中某一个属性来显示具有相同属性的内容
这是我的课题列表,我的课题列表中有一列是“状态”来显示“可选”或“不可选”的。目前列表显示的是所有可选和不可选的内容。我想添加一个功能,就是通过点击“可选”后,系统自动调用数据库中状态为“可选”的内容;点击“不可选”后,系统又能自动调用数据库中状态为“不可选”的内容。

<?php <br />
//######################课题列表##########################<br>
  include "conn.php";<br>
  include "header.php";<br>
?> <br>
<meta><br>
<br>
<link><br>
<title>课题列表</title><br>
<style><br />
<!--<br />
.STYLE1 {font-size: 14px}<br />
--><br />
</style><br>
Copy after login

   
  
  
  
  
  
  
  
  
  
  extract($_REQUEST);
  $n=0; 
  $query=mysql_query("select count(*) as sm from jiaoshi");
  mysql_query("set names 'GB2312'");
  $row=mysql_fetch_array($query);
  $count=$row['sm'];
    if(empty($offset))
              {$offset=0;}
echo  $offset;
   $query=mysql_query("select * from jiaoshi order by id asc limit $offset,$list_num") or die ("fail");
   mysql_query("set names 'GB2312'");
   while($row=mysql_fetch_array($query)){
        if(($n%2)!='0'){
    echo "";}
  else{
  echo "";
  }
if($row['surplus']==0)
     $ss="不可选";
else $ss="可选"; 
     echo"

 
  

课题编号

 
 
课题名称
    
 
指导教师
 
职称
    
 
可选人数
    
选题情况
    
状态
    
详细资料
    
 
".$row['id']."
 
".$row['subject']."
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