I am currently using this code
if ($this=mysql_fetch_array($this_db)) {
do {
} while ($this=mysql_fetch_array($this_db));
}
now is there a way I can a variable to tell me when it reaches the last loop?
like :
1
2
3
4
5 <- stops at 5?
without using the counting method since that will not interact correctly witht he code if I have inside of it.
Thanks
- Me