Jump to content

Last Foreach cicle, how to know?


lopes_andre

Recommended Posts

Hi,

 

I have a problem listing data from database.

 

I need to list data from a database and the results should be separated by ',', but I need a way to not show the ',' in the last cicle of the foreach.

 

My code is this:

 

<?php foreach ($result4 as $row4): ?>
<?php echo $row4->n_lingua ; ?>,
<?php endforeach; ?> 

 

The result of this is: "Portuguese, English,"

 

The question: How can I remove the last "," from the cicle?

 

 

Best Regards,

Link to comment
https://forums.phpfreaks.com/topic/190375-last-foreach-cicle-how-to-know/
Share on other sites

Thanks for the reply,

 

It should return "Ingles, Espanhol, Portugues" but is returning "Ingles Ingles, Espanhol Ingles, Espanhol, Portugues"

 

The code is:

 

      
<?php foreach ($result4 as $row4): ?>
<?php $rows[] = $row4->n_lingua ;  ?>
<?php echo implode(', ', $rows); ?>
<?php endforeach; ?>

 

What should be wrong here?

 

 

Best Regards,

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.