Catherine's Code Output For Strings:
Strings
Hello WorldHelloWorld
<?php
include('../includes/header.php');
// code
error_reporting(E_ALL); // set error reporting to all
echo("<h1>Catherine's Code Output For Strings:</h1>");
echo('<h2>Strings</h2>');
$a = 'Hello';
$b = 'World';
echo("$a $b");
echo('<br>');
$a = 'Hello';
$b = 'World';
$c = $a . $b; // <-- note $a . $b
echo($c);
echo('<br>');
// Typing rules creating a fatal error in the commented out code.
// $a = 'Hello1';
// $b = 'World2';
// $c = $a + $b; // <-- note $a + $b
// echo($c);
echo('<br>');
// $a = '1Hello';
// $b = '2World';
// $c = $a + $b; // <-- note $a + $b
// echo($c);
echo('<br>');
include('../includes/footer.php');
?>