hi folks i am using the code
<?php
$example2 = $_SESSION['example'];
$replly = str_replace("ABC-D", "ALPHABET-D",$example2);
print $replly;?>
Now, what i am trying to do is have a list of code (IE ABCD,DEFG,GHIJ...) that will be replaced by its coresponding word(s) (ALPHABET-D, ALPHABET-G....)
The code above does work, so how do i add multiple options to it to change different codes to words?
David