Jump to content

Remove ending comma on while loop


Mr Chris

Recommended Posts

Hi Guys,

I have this code:

[code]
<?php

$sql = "SELECT * from cfm_lower_level_story_categories WHERE tl_section_id=1"; 
$result = mysql_query($sql) OR die(mysql_error()); 

while ($row = mysql_fetch_assoc($result)){ 
  rtrim( ', ' );
  echo '"';
  echo $row['subsection_name'];
  echo '"';
  echo',';
}
?>

 

However, as you can see I have an ending comma:

 

  echo',';

 

How can I remove that comma on the last loop?  I thought it was done using rtrim, but I can't see how?

 

Thanks

 

Chris[/code]

Link to comment
Share on other sites

try this mate

 

<?php

$sql = "SELECT * from cfm_lower_level_story_categories WHERE tl_section_id=1"; 
$result = mysql_query($sql) OR die(mysql_error()); 
$i=0;
while ($row = mysql_fetch_assoc($result)){ 
  if ($!==0) {
    echo',';
  }
  rtrim( ', ' );
  echo '"';
  echo $row['subsection_name'];
  echo '"';
  $i++;
}
?>

 

 

done it the opposite way as it it echo's after the lines before

 

 

Regards

Liam

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.