PHP+MySQL 사용 mysqlnum_rows 모호 조회 도서 정보 기능 실현

4914 단어 PHPMySQL모호 조회
본 고의 실례 는 PHP+MySQL 에서 mysql 을 사용 하 는 것 을 다 루 었 다num_rows 는 도서 정보 모호 조회 기능 을 실현 한다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.
코드

td{
 font-size:9pt;
}
.style2 {color: #FFFFFF}


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="style.css" rel="external nofollow" rel="stylesheet">
<title>  mysql_num_rows()              </title>
</head>
<body>
<table width="609" height="134" border="1" cellpadding="0" cellspacing="0" bgcolor="#9E7DB4" align="center">
<form name="myform" method="post" action="">
  <tr>
   <td width="605" height="51" bgcolor="#CC99FF"><div align="center">       
     <input name="txt_book" type="text" id="txt_book" size="25" >
     &nbsp;
     <input type="submit" name="Submit" value="  ">
   </div></td>
 </tr>
</form>
 <tr valign="top" bgcolor="#FFFFFF">
  <td height="81">
   <table width="100%" border="0" cellpadding="0" cellspacing="0">
    <tr>
     <td height="79" align="right" valign="top"> <br>
       <table width="572" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#625D59">
        <tr align="center" bgcolor="#CC99FF">
         <td width="46" height="20">  </td>
         <td width="167">    </td>
         <td width="90">    </td>
         <td width="70">    </td>
         <td width="78">  </td>
         <td width="114">   </td>
        </tr>
        <?php
        $link=mysql_connect("localhost","root","root") or die("       ".mysql_error());
        mysql_select_db("db_database13",$link);
        mysql_query("set names gb2312");
        $sql=mysql_query("select * from tb_book");
        $info=mysql_fetch_object($sql);
        if ($_POST[Submit]=="  "){
          $txt_book=$_POST[txt_book];
          $sql=mysql_query("select * from tb_book where bookname like '%".trim($txt_book)."%'"); //        "like",       
          $info=mysql_fetch_object($sql);
        }
        if($info==false){ //          ,          
          echo "<div align='center' style='color:#FF0000; font-size:12px'>   ,           !</div>";
        }
        do{
       ?>
        <tr align="left" bgcolor="#FFFFFF">
         <td height="20" align="center"><?php echo $info->id; ?></td>
         <td >&nbsp;<?php echo $info->bookname; ?></td>
         <td align="center"><?php echo $info->issuDate; ?></td>
         <td align="center"><?php echo $info->price; ?></td>
         <td align="center">&nbsp;<?php echo $info->maker; ?></td>
         <td>&nbsp;<?php echo $info->publisher; ?></td>
        </tr>
        <?php
        }while($info=mysql_fetch_object($sql));
        ?>
      </table>
      <br>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;      &nbsp;<?php $nums=mysql_num_rows($sql);echo $nums;?>&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;</td>
    </tr>
   </table>
  <br></td>
 </tr>
</table>
</body>
</html>

2.운행 결과

주의:여기mysql_num_rows()를 사용 하여 결과 집중 줄 의 수 를 되 돌려 줍 니 다.이 명령 은 SELECT 문구 에 만 유효 합 니 다.INSERT,UPDATE 또는 DELETE 조회 에 영향 을 미 치 는 줄 의 수 를 얻 으 려 면 사용 해 야 합 니 다mysql_affected_rows().
더 많은 PHP 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.
본 논문 에서 말 한 것 이 여러분 의 PHP 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기