So when I have
Code
<html>
<?php
if(4 > 3){
//do stuff
}
?>
</html>
On my webpage I get
Quote
3){
//do stuff
}
?>
It's treating the > sign in the conditional statement, and any other > in the php code, as the closing php tag and treats the rest of my php as html.
Is there any way around this?