I am very new to PHP, and I have some problems. I have this as my code, basically saying the percentage of a number. But I get an error. It's probably a huge and obvious mistake, but as I said, I'm real new.
<html>
<head>
<title>HOY!</title></head>
<body>
HI!
<?php
$percent = 15;
$number = 89;
$decimal = $percent * .1;
$answer = $decimal * $number;
print "$percent percent of $number is $answer";
?>
</body>
</html>