I forgot what I needed to put before (or after a character) so that PHP will disregard as being part of the code but rather as text...as in:
<?php
echo "Hello World"""";
?>
So I would want the output to be: Hello World"""
What do I need to put before( or after) the three quotation marks so that php will treat it as part of the string rather than an end to the string.


