I have the following echo statement that displays a numerical value from a session:
<?php echo(str_replace('"', '"', $row_WAATKgblqemplisting['Group'])); ?>
How do I alter this statement so that if $row_WAATKgblqemplisting['Group']
is equal to 2 it says: This is #2
if its equal to 1 it says: This is #1
and if its equal to 3 it says: This is #3?
If writing to HTML, you could use the entity
#instead of the ASCII#