How do I force PHP NOT to parse something. For example, here is a string:
abc\\////cba
If I go like this:
<?php
$word = "abc\\////cba";
print $word
?>
That doesn't work. And neither does using single quotes:
<?php
$word = 'abc\\////cba';
print $word
?>
In fact, if I wanted to go crazy, how could I take an entire html page, filled with hundreds of ", ; and ? and make php not parse them?
Yesterday, someone said put things in single quotes. Well, what if halfway through my extremely long string, there is a single quote and a semicolon? What if my string is:
Trees had a 'branch'; <and a treehouse, too>
I know that this situation shouldn't come up normally, but my question is one of principle.
Thanks!