diff --git a/guide/english/php/hello-world/index.md b/guide/english/php/hello-world/index.md index 0373e27cf8..9e1662bfbe 100644 --- a/guide/english/php/hello-world/index.md +++ b/guide/english/php/hello-world/index.md @@ -20,12 +20,25 @@ A PHP script starts with ``: ?> ``` or -you can also write A PHP script starts with ``: +you can also write A PHP script which starts with `` when writing it in an external file i.e. "filename.php": ```php +``` +or +using require +```php + +``` Below, we have an example of a simple PHP file, with a PHP script that uses a built-in PHP function "echo" to output the text "Hello World!" on a web page: