diff options
| author | Chenbo Li <lichenbo1949@gmail.com> | 2013-08-03 12:14:11 +0800 | 
|---|---|---|
| committer | Chenbo Li <lichenbo1949@gmail.com> | 2013-08-03 12:14:11 +0800 | 
| commit | 4630854d7702a6911b5ff8e263d622b55e3b130c (patch) | |
| tree | a0d47701a7735f5f2476716459fe92dedcada912 /php.html.markdown | |
| parent | 777c48b80da9c560bbfb53de2e251d90275f6240 (diff) | |
| parent | 293c65c2860b92a0e3bdc752ab428c59e524f2be (diff) | |
Merge branch 'master' of https://github.com/adambard/learnxinyminutes-docs
Diffstat (limited to 'php.html.markdown')
| -rw-r--r-- | php.html.markdown | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/php.html.markdown b/php.html.markdown index 5f5a4b54..ce228870 100644 --- a/php.html.markdown +++ b/php.html.markdown @@ -9,7 +9,7 @@ filename: learnphp.php  This document describes PHP 5+.  ```php -<?php // PHP code must be enclosed with <?php ?> tags +<?php // PHP code must be enclosed with <?php tags  // If your php file only contains PHP code, it is best practise  // to omit the php closing tag. @@ -31,7 +31,8 @@ echo "World\n"; // Prints "World" with a line break  // (all statements must end with a semicolon)  // Anything outside <?php tags is echoed automatically -?>Hello World Again! +?> +Hello World Again!  <?php | 
