array function: how to use array function in php
arrayfunction.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>array function: how to use array function in php</title>
</head>
<body>
<h2 style="color:DeepPink; font-style:italic">php function example: How to use array function</h2>
<hr width="550" align="left" color="Pink" />
<br />
</div>
<?php
$Student=array("FirstName"=>"Jenny","LastName"=>"Jones","Age"=>"23");
echo '<div style="font-size:large; color:Green;">';
echo "First Name: ";
echo $Student["FirstName"];
echo "<br />Last Name: ";
echo $Student["LastName"];
echo "<br />Age: ";
echo $Student["Age"];
echo "</div>";
?>
</body>
</html>