Hi I am trying to store couple of paragraphs in using Test area and later displaying those using PHP. But while displaying all those paragraphs gets together and make one single paragraph. How can I solve this problem?
Thank you.
Use nl2br() before echoing...
html does not understand "\n" character so u have to change all the "\n" to <br> or ur code use
nl2br ($_POST['URVAR'])
Thank you very much for helping me. Could anyone tell me how I can implement the tab at the begining of a paragraph. Now I can see the different paragraph but if I try to have a tab it does not showing while displaying the info.