View Single Post
  #8 (permalink)  
Old 11-30-2007, 12:48 PM
wige's Avatar
wige wige is offline
Moderator
WebProWorld Moderator
 

Join Date: Jun 2006
Location: United States
Posts: 1,825
wige RepRank 4wige RepRank 4wige RepRank 4wige RepRank 4
Default Re: Truncated text box - PHP

PHP Code:
$row_orderComments['PPassValue'] = ereg_replace("\n"''$row_orderComments['PPassValue']);
$row_orderComments['PPassValue'] = ereg_replace("\r"''$row_orderComments['PPassValue']); 
This will remove both \n and \r. Some systems do line returns with both characters (\r\n) so you need to sanitize for both.
__________________
The best way to learn anything, is to question everything.
Reply With Quote