>  기사  >  백엔드 개발  >  php查询数据库表有关问题

php查询数据库表有关问题

WBOY
WBOY원래의
2016-06-13 12:44:59718검색

php查询数据库表问题

nbsp;html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><br>
<br>
<br>
<meta><br>
<title>学生课题查询</title><br>
<style><br />
<!--<br />
.STYLE1 {font-size: 14px}<br />
--><br />
</style><br>
<br>
<br>
<br>
<?php <br />
//######################学生查询所选课题##########################<br>
 include "config.php";<br>
 include "header.php";?><br>
 <br>
if($search)<br>
{<br>
  if ($xuehao=="") <br>
 {<br>
	echo"<p><font><b><big>请填写您的学号!</big></b></font></p>";<br>
	echo "<meta>";<br>
	exit;	<br>
 }  <br>
 <br>
 $query="select * from $student_table where xuehao='$xuehao'";<br>
 mysql_query("set names 'gb2312'");<br>
 $result=mysql_query($query);<br>
 $row=mysql_fetch_array($result);<br>
 if($row==0)<br>
 {<br>
	echo"<p><font><b><big>你还没有注册,或者你的输入有误,请重新输入!</big></b></font></p>";<br>
	echo "<meta>";<br>
    exit;<br>
 }<br>
 <br>
 $query="select id as sm from $student_table where xuehao='$xuehao'";<br>
 mysql_query("set names 'gb2312'");<br>
 $result=mysql_query($query);<br>
 $row=mysql_fetch_array($result);<br>
 if($row[sm]==0)<br>
 {<br>
	echo"<p><font><b><big>你还没有选择课题,请去选题!</big></b></font></p>";<br>
	echo "<meta>";<br>
    exit;<br>
 }<br>
 ?><br>

   
  
    
    
    
    
   
   
  $n=0; 
   $query=mysql_query("select * from $jiaoshi_table,$student_table where $jiaoshi_table.id=$student_table.id and $student_table.xuehao='$xuehao'");
 
      
 
        

学生学号


      

    
 
      
学生姓名

    
 
    
 课题名称 
    
 
      
指导教师

    
 
    
职称
    
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.