Print.php <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Assigment046</title>
<style>
body
{
background-color:black;
color:white;
}
</style>
</head>

<body>
<?php
$student
[0]= "Raul<br><img src='images/t90.jpg'>";
$student[1]="Manuel<br><img src='images/t90w.jpg'>";
$student[2]="Rigo<br><img src='images/t90g.jpg'>";
$student[3]="Adrian<br><img src='images/t90o.jpg'>";
$student[4]="Ivan<br><img src='images/t90gd.jpg'>"
$student[5]="Joe<br><img src='images/t90b.jpg'>";


foreach (
$student as $value)
  {
  echo 
"Current student has these shoes: "$value"<br>";
  } 

?>
</body>
</html>