I'm just wondering why this code isn't working, Thanks in advance. I'm new, so please don't hate me for it.
<html>
<head>
<h1> Hey! </h1>
</head>
<body>
<p>
<?php
ran = rand(0, 5);
if ($ran != 2){
echo "hi";
}
else{
echo "wow";
}
?>
</p>
</body>
</html>