Array
(
    [name] => John Morris
    [age] => 29
    [state] => texas
    [website] => http://www.learnphp.co
)
array(4) {
  ["name"]=>
  string(11) "John Morris"
  ["age"]=>
  string(2) "29"
  ["state"]=>
  string(5) "texas"
  ["website"]=>
  string(22) "http://www.learnphp.co"
}

John Morris

0
1
2
3
4
5
6
7
8
9
10

Name: John Morris
Age: 29
texas
http://www.learnphp.co

Name: John Doe
Age: 30
iowa
http://www.learnphp.co

0
1
2
3
4
5
6
7
8
9
10