I'm an ASP developer trying to learn PHP. Any idea why this code is blowing? It's verbatim from "PHP For the World Wide Web" by Larry Ullman.
Error Msg is: Parse error
<head>
<title></title>
</head>
<body bgcolor="#FFFFFF">
<?PHP
$Host= "localhost";
$User = MYUSERNAME;
$Password = MYPASSWORD;
$DBName = MYDB;
$TableName = "products";
$Link =mysql_connect ($Host, $User, $Password)
//ERROR BLOWS HERE ON LINE BELOW
if (mysql_create_db ($DBName, $Link)){
print("database, $DBName, was created!");
}
else
{
print("database, $DBName, was not created!");
}
mysql_close($Link);
?>
</body