In save forms into database... the value in the text area cant be saved with the line feed that user gives.
To get them we can use the following function...
consider the textarea name is description.... then we can convert the line feed in the form of '\n' or '\r' into <br />
$desc = $_REQUEST['description'];
$desc = ereg_replace("(\r\n|\n|\r)", "<br />", $_desc);
Cheers!
Showing posts with label line feed. Show all posts
Showing posts with label line feed. Show all posts
Friday, July 4, 2008
Subscribe to:
Posts (Atom)