");
echo("This is PHP.
");
echo("This is the first string " . "this is the second string " . "this is my last string
");
echo("We are in the month of " . date("F") . "
");
echo("The value in the query string for my_var is " . $_REQUEST['my_var'] . "
");
echo("My favorite flavour of ice cream is " . $favorite_ice_cream . "
");
echo("My dog is a " . $dog_type . "
");
echo("My dog is a " . $dog_type . "
");
echo ERROR_MSG;
?>