This document discusses PHP's basic syntax for escaping from HTML and embedding PHP code. It explains that PHP code is parsed between opening and closing tags like <?php ?> and is ignored outside of those tags. This allows PHP to be embedded in HTML documents. It provides examples of basic PHP embedding and also more advanced structures like if/else statements that drop in and out of PHP parsing mode. It describes the different types of PHP opening and closing tags that can be used and notes that <?php ?> tags should generally be used for portability.