Try creating a file called something like “test.php” containing the four lines
<?php
echo "abc";
?>
some other stuff
and running this in XAMPP. I would like it to echo only the quoted string “abc”, but it instead echos this together with everything else on the page, in this case echoing “abcsome other stuff”. How I can I prevent it from including the “some other stuff”?