<!DOCTYPE html>
<html>
<body>

<?php
$age=array("Peter"=>"35");
print "Peter is " . $age['Peter'] . " years old.";
?>


</body>
</html>