Hi All,
Newline(\n)
is not inserting a new line on the browser. Can some body help me how can I insert a new line on the browser.
I know the html tag<br />
will help. But is there any other way ?
Here is the snippet of the code which i used
<body> <?php
echo "\n\n Continue and For Loop \n ";
for($count=0; $count <= 10; $count++)
{
if($count == 5)
{
continue;
}
echo "value of \$count is ::> $count \n " ;
}
?>
</body>