There is a data output like:
... $query = "SELECT * FROM table"; $result = mysql_query($query); while ($row = mysql_fetch_array($result)) echo "<tr><td>", $row["a_id"], "</td><td>" ,$rowCity["a_name"], "</td></tr>"; ... it makes several lines with an html-plate:
89 Вася 150 Петя 48 Маша ... Tell me how to add a numbering so that it is:
1 89 Вася 2 150 Петя 3 48 Маша ...