I copy this from w3schools to www.000webhost.com
<!DOCTYPE html>
<html>
<body>
<?php
for ($x = 0; $x <= 10; $x++) {
echo "The number is: $x <br>";
}
?>
</body>
</html>
and instead of nice 10 line result I get
"; } ?>
I am sure this is some stupid beginner slip that I am unable to see half day.
Thanks