I used this ereg_replace code
//replace quote codes
$quotsym = " ";
$cosym = "-";
$cosym1 = "<br>";
$quotes = ereg_replace('[qu]', $quotsym, $quotes);
$quotes = ereg_replace('[/qu]', $quotsym, $quotes);
$quotes = ereg_replace('[co]', $cosym, $quotes);
$quotes = ereg_replace('[/co]', $cosym1, $quotes);
//Replace feature codes
$feat1 = "-";
$feat = "<br>";
$features = ereg_replace('[i]', $feat1, $features);
$features = ereg_replace('[/i]', $feat, $features);
and got this
Quotes:
[ ]y- m-mma is h-t[ ][--]in leather[ --] [ ]as is y- rs[ ][--] Nah![ --]
Features:
[-]see[
-][-]you[
-]
Ignore what I tested it with lol.
Plaese help
its supposed to look like this:
Quotes:
"yo momma is hot"-in leather
"as is yours"- Nah!
Features:
-see
-you
Thanks,
Chuckury