can someone please tell me what the hell is wrong with the following?
// Print Information Right Pane
$plusSignforFlash = "%2B";
$replaceString = "+";
$output = str_ireplace($plusSignforFlash,$replaceString, $body);
echo "
<p>"; echo nl2br($output); echo "</p>
";
$body is a long_text field from a database table. In the text, there is a code used by flash to denote a special character. in this case %2B which returns the plus sign when loaded in flash. but in php i have to replace it with the actual plus sign...
please help