Friday, December 27, 2019

Fix blank empty page for PHP page

I'm getting a blank pahe for my 7.3 PHP page on top of Apache 2.4 and AWS Linux 2 OS:

<?
phpinfo();
echo "test";
?>

What I'm doing wrong? Well, it's just a php missing as per below:

<?php
phpinfo();
echo "test";
?>

After this addition, it works like a charm.

No comments:

Post a Comment