<!DOCTYPE html>
<html>
<body>

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

</body>
</html>