Array
(
[0] => Jeff Talky
[1] => Susan Spellsgood
[2] => Beef Heartwell
[3] => Ajax Sorenstorm
[4] => Smally Biggy
)
Array
(
[wa] => Washington
[id] => Idaho
[or] => Oregon
)
Array
(
[0] => Array
(
[name] => Jeff Talky
[geometry] => 89
[history] => 23
)
[1] => Array
(
[name] => Susan Spellsgood
[geometry] => 55
[english] => 44
)
)
Code:
<html>
<head>
<title>PHP TEST YAHHH</title>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>
<div class="topbar">
<?php
include 'navbar.php';
?>
</div>
<?php
//arrayssssssssssssssss
$classNames = array('Jeff Talky', 'Susan Spellsgood', 'Beef Heartwell', 'Ajax Sorenstorm', 'Smally Biggy');
echo '<pre>';
print_r($classNames);
echo '</pre>';
echo '<br>';
$states = array ('wa' => 'Washington', 'id' => 'Idaho', 'or' => 'Oregon');
echo '<pre>';
print_r($states);
echo '</pre>';
echo '<br>';
$studentMarks = array(array('name' => 'Jeff Talky', 'geometry' => 89, 'history' => 23), array('name' => 'Susan Spellsgood', 'geometry' => 55, 'english' => 44));
echo '<pre>';
print_r($studentMarks);
echo '</pre>';
echo '<br>';
/* outputs in this format:
Array
(
[0] => Jeff Talky
[1] => Susan Spellsgood
[2] => Beef Heartwell
[3] => Ajax Sorenstorm
[4] => Smally Biggy
)
Array
(
[wa] => Washington
[id] => Idaho
[or] => Oregon
)
Array
(
[0] => Array
(
[name] => Jeff Talky
[geometry] => 89
[history] => 23
)
[1] => Array
(
[name] => Susan Spellsgood
[geometry] => 55
[english] => 44
)
)
*/
?>
<div class="codebox">
<h3>Code:</h3>
<?php
highlight_file("ex017.php");
?>
</div>
</body>
</html>