3
Okay, here’s the problem. I have a while taking 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 have the line position number where the ID=10 element is displayed?
Tried to create a counter? What is the purpose of knowing the line number?
– rray