break tag for php code example
Example 1: php new line
echo "\n";
# it only works in double quotes
Example 2: php new line
//let a variable contain multiple line
//add <br> tag in string
$variable = "123 <br> ";
echo "\n";
# it only works in double quotes
//let a variable contain multiple line
//add <br> tag in string
$variable = "123 <br> ";