Answers for "echo multiline calling function php"

PHP
0

Write Multi-Line Strings in PHP

phpCopy<?php
$mystring1 = "This is the first line." . PHP_EOL;
$mystring2 = "This is the second line";
$mystring1 .= $mystring2;
echo($mystring1);
?>
Posted by: Guest on April-23-2021
0

Write Multi-Line Strings in PHP

phpCopy<?php
echo("This is the first line \n\nThis is the third line");
?>
Posted by: Guest on April-23-2021

Browse Popular Code Answers by Language