The following code PHP generates a form example, which is posted after being tested by the Programming Home of this site and running normally.
- $link=mysql_connect("localhost","root","123456");
- $ db=mysql_select_db("bustest",$link);
- $sql1="select name from info group by name order by id asc";
- print("
- $res1=mysql_query($sql1);
- while($row1=mysql_fetch_array($res1)){
- $name=$row1[" name"];
- $sql2="select id from info where name =$name order by id asc";
- $res2=mysql_query($sql2);
- while($row2=mysql_fetch_array($res2)){
- print("
");
- $id=$row2["id"];
- print("
$id | ");
- $sql3="select count(*),id from info where name =$name group by name order by id asc";
- $res3=mysql_query($sql3);
- while($row3=mysql_fetch_array($res3)){
- $id1=$row3["id"];
- if($id1==$id){
- $num=$row3[0];
- print("
" );
- print(" tr>");
- }
- }
- }
- print("
|
");
- }
- print("
");
- mysql_close($link);
- ?>
-
-
- http://www.bkjia.com/PHPjc/486157.html
- www.bkjia.com
true
http: //www.bkjia.com/PHPjc/486157.html
TechArticle
The following code PHP generates a form example, which is posted after testing by the Programming Home of this site to run normally. ?php $link=mysql_connect("localhost","root","123456"); $db=mysql_select_db("bustest"...