PHP生成表格实例代码_PHP教程

WBOY
풀어 주다: 2016-07-13 17:41:05
원래의
1561명이 탐색했습니다.

下面代码PHP生成表格实例,经过本站编程之家测试正常运行后贴出来的。

  1. $link=mysql_connect("localhost","root","123456");
  2. $db=mysql_select_db("bustest",$link);
  3. $sql1="select name from info group by name order by id asc";
  4. print("");
  5. $res1=mysql_query($sql1);
  6. while($row1=mysql_fetch_array($res1)){
  7.     $name=$row1["name"];
  8.     $sql2="select id from info where name =$name order by id asc";
  9.     $res2=mysql_query($sql2);
  10.     while($row2=mysql_fetch_array($res2)){
  11.         print("
  12. ");
  13.         $id=$row2["id"];
  14.         print("
  15. ");
  16.         $sql3="select count(*),id  from info where name =$name  group by name  order by id asc";
  17.         $res3=mysql_query($sql3);
  18.         while($row3=mysql_fetch_array($res3)){
  19.             $id1=$row3["id"];
  20.             if($id1==$id){
  21.                 $num=$row3[0];
  22.                 print("
  23. ");
  24.             }else{
  25.                 print("
  26. ");
  27.             }
  28.         }
  29.     }
  30.     print("");
  31. }
  32. print("
  33. $id ");
  34.                 print $name;
  35.                 print("
  36. ");
  37. mysql_close($link);
  38. ?>   

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/486157.htmlTechArticle下面代码PHP生成表格实例,经过本站编程之家测试正常运行后贴出来的。 ?php $link=mysql_connect("localhost","root","123456"); $db=mysql_select_db("bustest"...
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!