I have come across a seemingly straightforward issue which I cannot find the answer for anywhere.
For some reason the PHP tags I’m using don’t seem to be working. I am opening with <?php and closing with ?>, but for some reason the closing tag is not being recognised as code and is showing up when I refresh the browser:
<?php
echo <p>Data Processed</p>;
?>
shows in the browser as
Data Processed
;?>
I must be missing something really simple.
Thanks mate!
– Luke Jackson Jul 25 '16 at 20:41