![]() |
Is there a way to tell in a while loop if you're on the last iteration?
I have some code that generates a "|"-separated list of forums that users are able to see. If a user has access to the forum, it appears in the list; if he/she doesn't, it doesn't. But the way I have it now, the | character appears after every forum name. I'd like it to not appear after the last forum name. I think I need to have some way of telling if a while loop is on the last go-round, if you know what I mean...if it's the last time the loop is going to execute.
Here's what I have: PHP Code:
Quote:
Quote:
|
Well you could always count how many forums there are using COUNT() and then add something like this $i++
Example: PHP Code:
It adds a extra query.. but this might work. |
Or you can simply remove the last three chars of the string since they will always be " | "...
|
whatever works best I really have no clue since me != sleep ><
|
Err, very bad way Neo. If anything you should just use $DB_site->num_rows() to get the number of records.
But like sparkz said, use substr() once you're done: PHP Code:
|
FireFly, thank you so very much! I've used the substr method. Just chopping off the end was by far the simplest solution. :)
I was pretty sure ahead of time no method of counting the number of results in a query (like with $DB_site->num_rows()) woud work, because the number of results in the last query was further reduced by the if ($getperms[canview]) part. In other words, not all of the results from the query would end up being used, so in all likelihood, the highest number would never be reached. |
All times are GMT. The time now is 08:58 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|