--- title: PHP Syntax and Comments --- ## PHP Syntax The structure of a PHP document may look something like: ```php ``` **NOTE:** Shorthand syntax is also available, but should be avoided to reduce unwanted behavior. A PHP file may have HTML tags and / or JavaScript. The default file extension for PHP files is `.php`. ## Indentation While this is mostly personal preference, it is most common to see the lines within the tags at the same level, like so: ```php