
March 5th, 2007, 02:10 PM
|
 |
Moderator
|
|
Join Date: Apr 2007
Location: Finland
Posts: 2,310
 
Time spent in forums: 6 Days 4 h 58 m 15 sec
Reputation Power: 4
|
|
|
Problem with posting escaped characters
I replied to a thread, and my reply contained this line of code:
php Code:
Original
- php Code |
|
|
|
mail( $_REQUEST['to'], $_REQUEST['re'], $_REQUEST['comments'], $hdr. "rnrn");
I hit the Save button and was sent back to the thread. The line was transformed into this:
php Code:
Original
- php Code |
|
|
|
mail( $_REQUEST['to'], $_REQUEST['re'], $_REQUEST['comments'], $hdr. "rnrn");
The backslashes disappeared. It turned out that I had to put double backslashes to get the line to be shown correctly. This wasn't needed before -- something changed?
|