cs netbean questions

profileyyk112233
lab3.php

<?php // declare array here $joesPondWinners = array( array(2013, "Gary Clark", "Barre, VT", "4/24/13", "8:46 a.m."), array(2014, "Kelsey Phillips Bill Brochu", "Iowa City, IA Springfield, MA", "4/29/14", "10:06 a.m."), array(2015, "Mary Numa", "West Haven CT", "4/29/15", "6:14 p.m."), array(2016, "Pamela Swift", "Barre, VT", "4/12/16", "5:04 p.m."), array(2017, "Emily Wiggett", "North Danville, VT", "4/23/17", "4:32 p.m."), ); echo count($joesPondWinners ); ?> <!DOCTYPE html> <html lang="en"> <head> <title>interesting about the array</title> <meta charset="utf-8"> <meta name="author" content="Haoyue Qi"> <meta name="description" content="the lab to take about how to use the arrays" > <link rel="stylesheet" href="css/custom.css" type="text/css" media="screen"> </head> <!-- ################ body section ######################### --> <body id="lab3"> <article class='take about the array '> <h1>last <?php print$joesPondWinners; ?> Winers! </h1> <ol> <?php // print array here with your foreach loop foreach ($joesPondWinners as $joesPondWinners ){ print"<li>"; print"Year".$joesPondWinners [0]; print"Winner".$joesPondWinners [1]; print"From".$joesPondWinners [2]; print"Date".$joesPondWinners [3]; print"Time".$joesPondWinners [4]; print"</li>"; } ?> </ol> </article> <?php // print out the array here with print_r just so you can see what the computer has in memory print "<p>contents of array:</p>"; print "<pre>"; print_r($joesPondWinners ); print "</pre>"; ?> </body> </html>