From 88c3b75333358bcf376bc89b8a696a2989c40d45 Mon Sep 17 00:00:00 2001 From: Alexandru-Daniel Nedelcu Date: Sat, 13 Oct 2018 23:21:12 +0200 Subject: [PATCH] Fix(guide): clean up Markdown formatting --- client/src/pages/guide/english/php/PHP Variables/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/pages/guide/english/php/PHP Variables/index.md b/client/src/pages/guide/english/php/PHP Variables/index.md index 812177b6e7..ab718f3fa6 100644 --- a/client/src/pages/guide/english/php/PHP Variables/index.md +++ b/client/src/pages/guide/english/php/PHP Variables/index.md @@ -2,7 +2,7 @@ title: PHP Variables --- -### PHP- Vaiables Types +### PHP - Vaiables Types Varibles are the main way to store information in the middle way of a PHP program. All variables in PHP are donated with a leading dollar sign like `$variable_name`. @@ -10,10 +10,10 @@ Variables are assigned with the `= operator` , with the variable on the left-han ### Variable Naming -Rules for naming a variable is listed below:- +Rules for naming a variable is listed below: 1. Variables names must begin with a letter or underscores character. - 2.A variable name can consist of numbers, letters, underscores but you cannot use characters like `+ , - , % , ( , ) . &` in its name. - 3.Variable names are case-sensitive i.e. `($age and $AGE are two different variables)`. + 2. A variable name can consist of numbers, letters, underscores but you cannot use characters like `+ , - , % , ( , ) . &` in its name. + 3. Variable names are case-sensitive i.e. `($age and $AGE are two different variables)`. ### Creating (Declaring) PHP Variables