diff --git a/guide/english/php/arrays/index.md b/guide/english/php/arrays/index.md
index 4b9c69f3b2..a0985cf162 100644
--- a/guide/english/php/arrays/index.md
+++ b/guide/english/php/arrays/index.md
@@ -11,7 +11,7 @@ In PHP, there are two types of arrays: Indexed arrays and Associative arrays. Ea
### Indexed Array Example
An indexed array is a list of ordered values. Each of these values in the array is assigned an index number. Indexes for arrays always start at `0` for the first value and then increase by one from there.
-```PHP
+```php
83, "Frank" => "93", "Benji" => "90");
```
@@ -28,7 +28,7 @@ $student_scores = array("Joe" => 83, "Frank" => "93", "Benji" => "90");
### Multidimensional Array Example
A multidimensional array is an array that contains other arrays. This lets you create complex data structures that can model a very complex group of data.
-```PHP
+```php
+```
+
#### More Information:
-* php.net arrays manual
+* php.net arrays manual
\ No newline at end of file