I'm sure I'm missing something very obvious here. I create the below php file and loaded it in xampp with apache running. I would expect it to print 'hello' 5 times. Instead the page is blank, and the if I inspect the page elements in chrome, I see the PHP as commented out, as shown in the below image.
<?
for($i = 0; $i < 5; $i++) {
echo 'hello';
}
?>