+ 1
Php opening tag ! echo"hello" ; php closing tag ! Hii
still it not giving me output . & if I write anything after closing PHP tag it shows to me page. e.g Hii ! please help. I am using xampp & sublime text
1 Réponse
+ 3
I guess you are using short opening tag (<?). In that case you must enable the shot tags in your php.ini file. You can just use full form and it will work as you expect.
<?php
echo "hello";
?>
Hii
Above code piece must show you following output.
helloHii