+ 1
how can I start my new echo statement with new line ?? wht is the keyword for separating both lines ??
how can I start my new echo statement with new line ?? wht is the keyword for separating both lines ??
4 Answers
+ 5
you can write: echo "First <br> Second";
+ 1
you can use
<?php
echo "some text <br/> next line";
?>
0
use break for single line <br />
0
<?php echo "php<br />";
echo "program"; ?>
or
<?php echo "<p>php</p>";
echo "program"; ?>