How do I get my PHP to display on the browser? Currently, nothing is showing and I am not sure what is wrong?
<body>
testing
<?php
echo "Hie there";
print "Hello there";
?>
</body>
I expect it to display the echo but currently, nothing shows when I run it. Can you show me what is wrong with the code?