how about preg_replace('/(\\n}\\r\\n)/', '<br />', $_POST["problem"]);
Advertising
On Sat, Jun 27, 2009 at 12:50 AM, Adam Williams
<awill...@mdah.state.ms.us>wrote:
>
>
> Daniel Brown wrote:
>
>> In a cursory glance, I've noticed the following code:
>>
>> htmlspecialchars(nl2br(str_replace('\r','',$_POST["problem"])))
>>
>> You are using a literal '\r' in your str_replace() function. This
>> should instead be replaced with double quotes to translate the \r to
>> its appropriate EOL character:
>>
>> htmlspecialchars(nl2br(str_replace("\r",'',$_POST["problem"])))
>>
>>
>>
>
> Thanks, I didn't know that single vs double quotes in that instance made a
> difference. I've made the change to my code.
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
Best Regards!
Wen Dong