From 74cd81faf95b94be448079b173ce8ab0c634a735 Mon Sep 17 00:00:00 2001 From: Smith Nkereuwem <31161701+smithnkereuwem@users.noreply.github.com> Date: Wed, 27 Mar 2019 02:14:14 +0100 Subject: [PATCH] An Update to the intro to PHP guide. Quick Little Review. (#33961) * Update index.md * Update index.md --- guide/english/php/hello-world/index.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/guide/english/php/hello-world/index.md b/guide/english/php/hello-world/index.md index 9e1662bfbe..1eab409776 100644 --- a/guide/english/php/hello-world/index.md +++ b/guide/english/php/hello-world/index.md @@ -7,11 +7,11 @@ PHP scripts are executed on the server. Before you continue you should have a basic understanding of the following: -### HTML -### CSS -### JavaScript +### HTML - A webpage's blueprint +### CSS - A webpage's design plan and instruction +### JavaScript - A webpages power worker, that makes it function dynamically. PHP files can contain Text, HTML, CSS, JavaScript, and PHP code. -A PHP script is executed on the server, and the plain HTML result is sent back to the browser. +A PHP script is executed on the server, and is returned to the user on the browser as just HTML markup, with some styling. A PHP script starts with ``: ```php @@ -40,7 +40,7 @@ require 'filename.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: +Below, we have an example of a simple PHP file, with a PHP script that uses a built-in PHP function "echo" to output(echo out) the text "Hello World!" on a web page: ```php