How do i display a separator between elements if a separator is required? I need to display a name, job title, company. If each of those appear in a news quote entry.
Not all news quotes have all three items, it could be:
- name, job title, company
- name, job title
- name, company
- name
For each variation, I need to echo a separtor such a , or |
Currently the query is this:
<?php echo $row_article['quote_name'] . ', ' . $row_article['quote_job'] . ', ' . $row_article['quote_company']; ?>
Which if all three exist, it looks correct. If only any two exist I get something like
name, , company
, job title, company
name, job title,

$row_articlecontais all items, but they may be blank. Is that correct? – sberry Aug 10 '12 at 10:59