Comparisons.php

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Comparisons</title>
</head>

<body>
I have been thinking of what anime to whatch and heard of this new anime to read called Amaenaideyo. Lets see if it dose not suck like Ariel said.
<br>
<br>

<?php

$romance 
"bad";
$super_natural "good";
$comedy 10;
$erotica "bad";



//Here are the if statements and comparison conditions to rate them
if ($romance!="good"//not equal to
{
print(
"Romance is bad.<br>");
}

if (
$super_natural == "good"//equal to
{
print(
"Super Natural is good.<br>");
}

if (
$comedy >=9//greater than or equal to
{
print(
"Comedy is good. <br>");
}

if (
$erotica==="bad"//identical to (including data type)
{
print(
"Erotica is bad. <br>");
}

?>
<br>
<br>

Based on these findings I will probably not be ummmmmm I don't know i might watch it.
</body>
</html>