On it from the base are drawn the number of works in this way:
<table> <tr> <td><p class="array">Наименование субъекта Российской Федерации</p></td> <td><p class="array">Количество работ</p></td> </tr> <?php include 'bd.php'; $result = mysql_query("SELECT region, count(region) FROM `register_user` GROUP BY `region`"); $array = mysql_fetch_array($result); do { echo ""."<tr><td><p class='array'>".$array[region]."</p></td><td><p class='array'><a>".$array[count(region)]."</a></p></td></tr>".""; } while ($array = mysql_fetch_array($result)); ?> </table> How to make numbers in number of works links to other pages? They must be different for their region.
That is, by clicking on the number of works, we will receive information on work in the relevant region.
