Development Php



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!!";
?>

", ":-)", "\n" ?>
spans multiple lines.
Even the newlines are output in the document source!"?>