Merge PHP dynamically generated tables

Source: Internet
Author: User

<? PHP
$ Link = mysql_connect ("localhost", "root", "root ");
$ Db = mysql_select_db ("bustest", $ link );
$ Sql1 = "Select name from Info group by name order by id asc ";
Print ("<Table border = '1'> ");
$ 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 ("<tr> ");
$ Id = $ row2 ["ID"];
Print ("<TD> $ id </TD> ");
$ 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 ("<TD rowspan = '$ num'> ");
Print $ name;
Print ("</TD> ");
} Else {
Print ("</tr> ");
}
}
}
Print ("</tr> ");
}
Print ("</table> ");
Mysql_close ($ link );
?>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.