Hello
I'm using the following code ::
if ($thischar == "a")
{print ("A");}
else
if ($thischar == "b")
{print ("B");}
else
print ("ERROR");
Now I want to put a new line but it won't work !!
I tried :
if ($thischar == "\n")
{print ("\n");}
else
But it appears as \n maybe because I'm using a textarea but how can I make it print a new line?
Thanks.