I am following the steps in the book PHP for the Web, 4th edition. I am using Dreamweaver for my IDE. The author is using XHTML where I am using HTML5. I followied exactly what he is doing but when sending it to the server I get this error: Parse error: syntax error, unexpected token "print" in C:\xampp\htdocs\mysite\variables.php on line 14. Here is the code:
<?php // Script 2.3 - variables.php
$street = "100 Main Street"
$city = "State College";
$state = "PA";
$zip = 16801
print "<p>The address is:<br/>$street <br/>$city $state $zip</p>";
?>
Line 14 is the print function line. I've tried placing the quotations elsewhere, I've tried following the W3Schools tutorial and get this error still. What is the problem?