1.7.php

The book A Confederacy of Dunces was written by John Kennedy Toole.

# Script 1.7
//Create the variables
$firstName = 'John';
$middleName = 'Kennedy';
$lastName = 'Toole';
$author = $firstName . ' ' . $middleName . ' ' . $lastName;
$book = 'A Confederacy of Dunces';

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