summaryrefslogtreecommitdiffhomepage
path: root/php.html.markdown
diff options
context:
space:
mode:
authorMalcolm Fell <emarref@gmail.com>2013-06-30 15:52:45 +1200
committerMalcolm Fell <emarref@gmail.com>2013-06-30 15:52:45 +1200
commitc3df7c1c5358e34673264122f16ceaf5f17e236c (patch)
treef7268afa494b106854a7cebe187bc208b0a58139 /php.html.markdown
parentdb04a0c728fde5386590753c53568d7b973349ae (diff)
Clarify includes and open tags.
If it's not PHP, it doesn't need the open tag.
Diffstat (limited to 'php.html.markdown')
-rw-r--r--php.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/php.html.markdown b/php.html.markdown
index 20923548..75bbd214 100644
--- a/php.html.markdown
+++ b/php.html.markdown
@@ -379,7 +379,7 @@ echo $function_name(1, 2); // => 3
```
```php
<?php
-// Included files must also begin with a PHP open tags.
+// PHP within included files must also begin with a PHP open tag.
include 'my-file.php';
// The code in my-file.php is now available in the current scope.