summaryrefslogtreecommitdiffhomepage
path: root/php.html.markdown
diff options
context:
space:
mode:
authorAdam <adam@adambard.com>2013-08-02 09:40:22 -0700
committerAdam <adam@adambard.com>2013-08-02 09:40:22 -0700
commit18a5e58b16e6e0b172c010fd3bba07e81701222a (patch)
treee27928d18b2afb10a5bb32315f4082ffa59b5b94 /php.html.markdown
parent906c7164d0975d14da0391ff47b5c384f0dd1c47 (diff)
Fixed php and removed old VB file
Diffstat (limited to 'php.html.markdown')
-rw-r--r--php.html.markdown5
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