Array
(
[name] => Tina
[age] => 25
[address] => Array
(
[0] => Seattle
[1] => Lynnwood
)
)
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
$person = array('name' => 'Tina', 'age' => 25, 'address' => array ('Seattle', 'Lynnwood'));
echo '<pre>';
print_r($person);
echo '</pre>';
echo '<br>';
/* outputs in this format:
Array
(
[name] => Tina
[age] => 25
[address] => Array
(
[0] => Seattle
[1] => Lynnwood
)
)
*/
?>
<div class="codebox">
<h3>Code:</h3>
<?php
highlight_file("ex016.php");
?>
</div>
</body>
</html>