I have a pretty simple question,
I got this simple code:
so as you can see it actually ouputs: yo !
But on some server i'm uploading this simple php file it won't ouput anything.
So i guess this is a php server config problem, anyone knows what needs to be activated to make the php output shortag work ? (<?= ?>)(so i can tell the server admin...)
I got this simple code:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title></title>
</head>
<body>
<?php $gg="yo !"; ?>
<?= $gg ?>
</body>
</html>
But on some server i'm uploading this simple php file it won't ouput anything.
So i guess this is a php server config problem, anyone knows what needs to be activated to make the php output shortag work ? (<?= ?>)(so i can tell the server admin...)
Comment