SyntaxFix
Write A Post
Hire A Developer
Questions
You need to add the semicolon to the end of all php things like echo, functions, etc.
change <?php phpinfo() ?> to <?php phpinfo(); ?>
<?php phpinfo() ?>
<?php phpinfo(); ?>
If that does not work, use php's function ini_set to show errors: ini_set('display_errors', 1);
ini_set('display_errors', 1);