I have a simple "Hello World" code on a server that has PHP on it. Here is the code:
<!DOCTYPE html>
<html>
<body>
<?php
ECHO "Hello World!<br>";
echo "Hello World!<br>";
EcHo "Hello World!<br>";
?>
</body>
</html>
However, what I get on a page (in any browser) is this:
"; echo "Hello World!
"; EcHo "Hello World!
"; ?>
Is there any mistake in my code?
Hello World!
Hello World!
– Mayank Pandeyz Sep 06 '16 at 04:50