here is part b for pursu chapter 7 for MD array
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Chapter 7 pursu</title>
</head>
<body>
<h2> Console Wars</h2>
<?php
/* pursu chapter 7 B
* creating a multidimensional array
*/
//creating a MD array:
$company = array(
1 => 'Microsoft','Nintendo', 'Sony');
$console = array(
1 => 'Xbox 360','Wii U','Playstation 3');
$firstparty = array(
1 => 'Halo', 'Mario', 'God Of War');
$best = array(
'Maker' => $company,