Log in

View Full Version : Removing trailing comma in loop?


RetroDreams
03-31-2008, 09:30 PM
I've got a ranking script using the query below.

$othervotes = $db->query_read("SELECT team, rankem_team.teamid, sum(points) AS totalpoints
FROM rankem_rank
INNER JOIN rankem_team ON rankem_team.teamid = rankem_rank.teamid
WHERE rankem_rank.weekid = $week
GROUP BY rankem_team.teamid
ORDER BY totalpoints DESC
LIMIT 25,100");
if ($db->num_rows($othervotes) > 0)
{
while ($others = $db->fetch_array($othervotes))
{
eval('$otherbits .= "' . fetch_template('rank_otherbits') . '";');
}
}

Here is what is in the rank_otherbits template

$others[team] $others[totalpoints],

As you can guess, there is a trailing comma. Is there a template conditional I can use to strip the last comma? If not, how can I do so programatically?

Boofo
03-31-2008, 11:05 PM
Try:

$otherbits .= ', ' . trim($otherbits);

RetroDreams
04-01-2008, 12:02 AM
Try:

$otherbits .= ', ' . trim($otherbits);

Pardon my ignorance, but where exactly is it placed? I've put it before, in and after the loop and nothing formats correctly.

Boofo
04-01-2008, 12:08 AM
After.

RetroDreams
04-01-2008, 12:10 AM
Like so, right?

$othervotes = $db->query_read("SELECT team, rankem_team.teamid, sum(points) AS totalpoints
FROM rankem_rank
INNER JOIN rankem_team ON rankem_team.teamid = rankem_rank.teamid
WHERE rankem_rank.weekid = $week
GROUP BY rankem_team.teamid
ORDER BY totalpoints DESC
LIMIT 25,100");
if ($db->num_rows($othervotes) > 0)
{
while ($others = $db->fetch_array($othervotes))
{
eval('$otherbits .= "' . fetch_template('rank_otherbits') . '";');
}
}
$otherbits .= ', ' . trim($otherbits);

Here it is in action... it duplicates the list and adds a space.

http://www.goldhelmet.com/rankings.php?week=1

Boofo
04-01-2008, 12:13 AM
$otherbits = ', ' . trim($otherbits);

Sorry

RetroDreams
04-01-2008, 12:17 AM
Hmm, still no go. Wondering if it is something wrong with my if statement.

Boofo
04-01-2008, 12:19 AM
Put this above the eval:

$otherbits .= ', ' . trim($otherbits);

RetroDreams
04-01-2008, 12:24 AM
No go. Duplicates the list numerous times. I tried without the . as well and it just prints like n number of ,s and then the list as it did before.

--------------- Added 1207013300 at 1207013300 ---------------

Got it. I placed $otherbits = trim($otherbits, ', '); after the loop and it got the rangly rascal! Thanks for the gentle kick in the arse!

Boofo
04-01-2008, 12:48 AM
Above the eval, right?

RetroDreams
04-01-2008, 01:21 AM
Above the eval, right?

Nope, here is what it looks like:

$othervotes = $db->query_read("SELECT team, rankem_team.teamid, sum(points) AS totalpoints
FROM rankem_rank
INNER JOIN rankem_team ON rankem_team.teamid = rankem_rank.teamid
WHERE rankem_rank.weekid = $week
GROUP BY rankem_team.teamid
ORDER BY totalpoints DESC
LIMIT 25,100");
if ($db->num_rows($othervotes) > 0)
{
while ($others = $db->fetch_array($othervotes))
{
eval('$otherbits .= "' . fetch_template('rank_otherbits') . '";');
}
$otherbits = trim($otherbits, ', ');
}

Boofo
04-01-2008, 01:48 AM
See? That just proves you should never listen to me. ;)

RetroDreams
04-01-2008, 02:46 AM
See? That just proves you should never listen to me. ;)
LOL -- I was two beers in and scratching my head. I was gonna listen to anyone or anything with an idea.

http://www.goldhelmet.com/rankings.php?week=1

Here is my "progress" thus far. I'm not stuck on a new query and getting some god awful mySQL error message: This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery'. PC Load Letter... what the F does that mean? LOL

Boofo
04-01-2008, 03:03 AM
What version of MySQL are you running?

Dismounted
04-01-2008, 03:17 AM
$othervotes = $db->query_read("
SELECT team, rankem_team.teamid, sum(points) AS totalpoints
FROM rankem_rank
INNER JOIN rankem_team USING (teamid)
WHERE rankem_rank.weekid = $week
GROUP BY rankem_team.teamid
ORDER BY totalpoints DESC
LIMIT 25, 100
");

if ($db->num_rows($othervotes) > 0)
{
while ($others = $db->fetch_array($othervotes))
{
eval('$otherbits .= "' . fetch_template('rank_otherbits') . '";');
}
}

$otherbits = trim($otherbits, ',');