<?php $a = 4; ?> This text is outside a PHP tag. <?php print("a = " . $a . "\n"); // Uses a = 4 from above !!! ?>
Output:
This text is outside a PHP tag. a = 4
Examples:
<?php ... # This is a comment ... ?>
<?php ... // This is a comment ... /* --------------------------- This is also a comment --------------------------- */ ?>
include 'filename';
Effect:
with the content of the included file.