> 백엔드 개발 > PHP 튜토리얼 > php的查询功能(怎么通过查询条件获取相应表的字段)

php的查询功能(怎么通过查询条件获取相应表的字段)

WBOY
풀어 주다: 2016-06-13 12:01:09
원래의
1029명이 탐색했습니다.

php的查询功能(如何通过查询条件获取相应表的字段)

<?php<br />//获得连接<br />$db = mysql_connect("localhost", "root", "root") or die(mysql_error());<br />//echo "Connected to MySQL<br/>";<br />//连接数据库<br />mysql_select_db("test") or die(mysql_error());<br />//echo "Connected to Database";<br /><br />    //查询数据,并用表格显示出来  <br />	@$checked = $_POST['checked'];<br />	@$result = mysql_query("select * from books",$db);<br />    echo "<table border=1>\n";                                      <br />    echo "<tr><br />	         <td>isbn</td><br />			 <td>author</td><br />			 <td>title</td><br />			 <td>price</td><br />			 ";                                                     <br />    echo "</tr>\n";                                                 <br />    //循环遍历                                                          <br />      while ($myrow = mysql_fetch_row($result)){ <br />	          printf("<tr><br />			               <td>%s</td><br />						   <td>%s</td><br />						   <td>%s</td><br />						   <td>%s</td>", $myrow[0], $myrow[1],$myrow[2],$myrow[3]);<br />            }                                                               <br />         echo "</table>\n";<br />?><br /><html><br /><head><br /><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><br /><title>无标题文档</title><br /></head><br /><body><br /><form action="" name=""><br/><br />  <br/><br />   <input type="button" value="查询" name="submit"/><br />   <input type="text" name="checked"/><br /></form><br /></body><br /></html>
로그인 후 복사

------解决方案--------------------
result = mysql_query("select * from books where checked=‘$checked’ ");
------解决方案--------------------
if(isset($_POST['checked'])){
@$result = mysql_query("select * from books",$db);
    echo "

\n";                                      
    echo "
             
             
             
             
             ";                                                     
    echo "\n";                                                 
    //循环遍历                                                          
isbn author title price
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿