diff --git a/guide/english/php/ajax/index.md b/guide/english/php/ajax/index.md
deleted file mode 100644
index dc70218ee0..0000000000
--- a/guide/english/php/ajax/index.md
+++ /dev/null
@@ -1,108 +0,0 @@
----
-title: AJAX
----
-## AJAX
-
-
-AJAX stands for Asynchronous JavaScript And XML. It is not a programming language. It is a technology for developing better, faster and interactive Web Applications using HTML, CSS, JavaScript and XML.
-
-
HTML : Hypertext Markup Language (HTML) is used for defining the structure of a Web Application.
-
CSS : Cascading Style Sheet (CSS) is used to provide look and style to a Web Application.
-
JavaScript : JavaScript is used for making a Web Application interactive, interesting and user friendly.
-
XML : Extensible Markup Language (XML) is a format to store and transport data from the Web Server.
-
-
What's the meaning of Asynchronous in AJAX?
-
Asynchronous means that the the Web Application could send and receive data from the Web Server without refreshing the page. This background process of sending and receiving data from the server along with updating different sections of a web page defines Asynchronous property/feature of AJAX.
-
How AJAX works?
-
AJAX makes use of a browser built-in XMLHttpRequest object to request data from a Web Server and HTML DOM to display or use the data.
-
XMLHttpRequest Object : It is an API in the form an object whose methods help in transfer of data between a web browser and a web server.
-
HTML DOM : When a web page is loaded, the browser creates a Document Object Model of the page.
-
-
-Create a XMLHttpRequest Object :
-
-```javascript
-var xhttp = new XMLHttpRequest();
-```
-Properties of XMLHttpRequest object :
-
-```readystate``` is a property of the XMLHttpRequest Object which holds the status of the XMLHttpRequest.
-
-
0: request not initialized
-
1: server connection established
-
2: request received
-
3: processing request
-
4: request finished and response is ready
-
-
-```onreadystatechange``` is a property of the XMLHttpRequest Object which defines a function to be called when the readyState property changes.
-
-```status``` is a property of the XMLHttpRequest Object which returns the status-number of a request
-
-
200: "OK"
-
403: "Forbidden"
-
404: "Not Found"
-
-
-XMLHttpRequest Object Methods :
-To send a request to a Web Server, we use the open() and send() methods of the XMLHttpRequest object.
-
-```javascript
-xhttp.open("GET", "content.txt", true);
-xhttp.send();
-```
-
-Create a function changeContent() using JavaScript :
-
-```javascript
-function changeContent() {
- var xhttp = new XMLHttpRequest();
- xhttp.onreadystatechange = function() {
- if (this.readyState == 4 && this.status == 200) {
- document.getElementById("foo").innerHTML = this.responseText;
- }
- };
- xhttp.open("GET", "content.txt", true);
- xhttp.send();
-}
-```
-AJAX example to change content of a web page :
-
-```HTML
-
-
-
-
-
-
The XMLHttpRequest Object
-
-
-
-
-
-
-
-```
-The file ```content.txt``` should be present in the root directory of the Web Application.
-
-### Sources
-
-- [W3Schools](https://www.w3schools.com/js/js_ajax_intro.asp)
-- [MDN web docs](https://developer.mozilla.org/en-US/docs/Web/Guide/AJAX/Getting_Started)
-
-### Other Resources
-
-- [W3Schools](https://www.w3schools.com/js/js_ajax_intro.asp)
-- [MDN web docs](https://developer.mozilla.org/en-US/docs/Web/Guide/AJAX/Getting_Started)
diff --git a/guide/english/php/php-switch/index.md b/guide/english/php/php-switch/index.md
deleted file mode 100644
index 439b5d6175..0000000000
--- a/guide/english/php/php-switch/index.md
+++ /dev/null
@@ -1,69 +0,0 @@
----
-title: PHP Switch
----
-## PHP Switch
-
-The `switch` statement in PHP is similar to a series of `if ` statements on same expression. The `switch` statement is used to execute different actions at different conditions. The Syntax of the `switch` statement is follows
-
-```
-switch (expression) {
-
- case label1:
- // code block to be executed if there is a match with result of expression
- break;
- case label2:
- // code block to be executed if there is a match with result of expression
- break;
- case label3:
- // code block to be executed if there is a match with result of expression
- break;
- default:
- // code block to be executed if there is no match with result of expression
-
-}
-
-```
-When we run the program , the expression inside the `switch` statement is evaluated. The result of that expression is checked with corresponding labels if there is a match then corresponding `case` block is executed. If no match is found with any of the case statements, only the block of code following the `default` are executed.
-
-Illustration of `switch` statement with an example
-
-```
-
-
-```
-The `switch` statement can also be used without `break` statement. In that case , statements after the matched cases will be executed. Below is an usage of `switch` statement without `break` statement.
-
-```
-
-
-/*output --> i equals 0i equals 1i equals 2 */
-
-```
-#### More Information:
-[Switch Statement - PHP Documentation](http://php.net/manual/en/control-structures.switch.php)
-
-[PHP5 Switch - W3Schools](https://www.w3schools.com/php/php_switch.asp)
diff --git a/guide/english/php/switch-statement/index.md b/guide/english/php/switch-statement/index.md
deleted file mode 100644
index b49b64e268..0000000000
--- a/guide/english/php/switch-statement/index.md
+++ /dev/null
@@ -1,92 +0,0 @@
----
-title: Switch statement
----
-
-# Switch
-`Switch` is a selection statement that will select a switch statement and execute it from the list of candidates. Switch consists of `case` and an optional `default`. The execution can be stopped by using a `break` or `return`.
-
-## Syntax
-```
-switch(x)
-{
- case value1:
- //execute if x = value1
- break;
- case value2:
- //execute if x = value2
- break;
-
- ...
-
- default:
- execute if x is different with cases above
-}
-
-```
-
-## Example
-```php
-
-
-
-```
-
-## Output
-```
-if case is 1
-> Dice show number One.
-
-if case is 2
-> Dice show number Two.
-
-if case is 3
-> Dice show number Three or Four.
-
-if case is 4
-> Dice show number Three or Four.
-
-if case is 5
-> FiveSixDice show number Six.
-
-if case is 6
-> SixDice show number Six.
-
-if none of the above
-> Dice show number unknown.
-```
diff --git a/guide/english/php/switch-statements/index.md b/guide/english/php/switch-statements/index.md
deleted file mode 100644
index 29a7e4414a..0000000000
--- a/guide/english/php/switch-statements/index.md
+++ /dev/null
@@ -1,26 +0,0 @@
----
-title: Switch Statements
----
-## Switch Statements
-Switch statements execute blocks of code based on the value of a condition.
-
-### Syntax:
-```PHP
-switch(x) {
- case 1:
- statement1;
- break;
- case 2:
- statement2;
- break;
- default:
- defaultstatement;
-}
-```
-
-In the above example, x is the condition. The statements following the case that matches will be executed. If there are no matches, the default statement(s) will be run.
-
-The `break` keyword is used to end each case.
-
-### More Information:
-PHP Switch
diff --git a/guide/english/php/switch/index.md b/guide/english/php/switch/index.md
index 70e3691999..629d29965c 100644
--- a/guide/english/php/switch/index.md
+++ b/guide/english/php/switch/index.md
@@ -84,5 +84,72 @@ While break can be omitted without causing fall-through in some instances (see b
}
```
+## Example
+```php
+
+
+
+```
+
+## Output
+```
+if case is 1
+> Dice show number One.
+
+if case is 2
+> Dice show number Two.
+
+if case is 3
+> Dice show number Three or Four.
+
+if case is 4
+> Dice show number Three or Four.
+
+if case is 5
+> FiveSixDice show number Six.
+
+if case is 6
+> SixDice show number Six.
+
+if none of the above
+> Dice show number unknown.
+```
+
#### More Information:
* [php.net docs Switch](https://secure.php.net/manual/en/control-structures.switch.php")
diff --git a/guide/english/php/syntax/index.md b/guide/english/php/syntax/index.md
deleted file mode 100644
index f5baba01da..0000000000
--- a/guide/english/php/syntax/index.md
+++ /dev/null
@@ -1,24 +0,0 @@
----
-title: Syntax
----
-## Syntax
-
-PHP is a language allowing you to include dynamic content in otherwise static webpages. It is written inline with html, simply rename a .html file to .php (web-server must have php installed) to get started.
-
-```PHP
-
-
-
-PHP Example
-
-
-