Opening and Closing Code Islands : Php Script « Language Basics « PHP
- PHP
- Language Basics
- Php Script
Opening and Closing Code Islands
<? "Hello, world!" ?>
Here is the equivalent, written using the standard open and closing tags:
<?php
print "Hello, world!";
?>
Related examples in the same category