The problem is as follows. I have a while that takes values in the database:
...
while ($produto = mysql_fetch_array($produtos)) {
echo "<tr>";
echo "<td>".$produto['id']."</td>";
echo "<td>autor:".$produto['user_of'] . "</td>";
echo "<td>".$produto['categ'] . "</td>";
...
Now, how can I get the line position number where the ID element = 10 is displayed?