in the file...
linetest1.php >>>>>>>>>>>>>
<?php
$new_actionplan = addslashes($HTTP_POST_VARS['ActionPlan']);
echo 'The action plant is: '.$new_actionplan.' </br>';
echo '<textarea>'.$new_actionplan.'</textarea>';
?>
IF you look at the markup of that page (load it in the browser, file->view source) then you'll see the outputted text outside of the textarea is linebroken. You need to do a string replace for "\n" with "<br>" or "<p>" if you want the linebreaks to be shownin the html output.
Many shoes,
Jamez/SiliconFuRy
|