Echo Example
$string1 = "A.
\n";
$string2 = "B ";
$string3 = "Line 1
spans multiple lines.
Line3
";
echo "Start, ", $string2, $string1;
echo("$string2$string1");
echo("This string $string1");
echo($string2 . $string1);
echo($string3);
echo "Line 1.
lin 2!!
";
?>
=$string2,$string1?>
="output", " rntsoft.com!", "
", ":-)", "
\n" ?>
="This string
spans multiple lines.
Even the newlines are output in the document source!
"?>