i'm using metacharacter in a simple php code, but it is now showing Second line of text into a new line.
echo "First line of text \r\n Second line of text";
I know Unix based systems use just a "\n". But as i'm on Windows 7, so i am using "/r/n"
Try using other way with basic HTML
tag <br />
:
echo "First line of text" . "<br />" . "Second line of text";
`.) – Brad Jan 08 '14 at 05:13