Script 1.7 Concatenation

Output

The book The Girls' Guide to Hunting and Fishing was written by Melissa Bank.

Source
<?php
#	Script	1.7	-	concat.php
//	Create	the	variables:
$first_name	=	'Melissa';
$last_name	=	'Bank';
$author = $first_name . ' ' . $last_name;
$book	=	'The	Girls\'	Guide	to	Hunting and	Fishing';

//Print	the	values:
echo "<p>The book <em>$book</em> was written by $author.</p>";
?>