Stepping Through an Array

Stepping Through an Array

The array: Array ( [0] => Steinbeck [1] => Kafka [2] => Tolkien [3] => Dickens )

The current element is: Steinbeck.

The next element is: Kafka.

...and its index is: 1.

The next element is: Tolkien.

The previous element is: Kafka.

The first element is: Steinbeck.

The last element is: Dickens.

The previous element is: Tolkien.

 

CODE FOLLOWS

<?php
// Include the header file (assumed to contain common HTML and styles)
include('includes/header.php');
?>

<!DOCTYPE html>
<html lang="en">
<head>
    <title>Stepping Through an Array</title>
    <link rel="stylesheet" type="text/css" href="common.css" />
</head>
<body>
<h1>Stepping Through an Array</h1>

<?php

$authors 
= array( "Steinbeck""Kafka""Tolkien""Dickens" );

echo 
"<p>The array: " print_r$authorstrue ) . "</p>";

echo 
"<p>The current element is: " current$authors ) . ".</p>";
echo 
"<p>The next element is: " next$authors ) . ".</p>";
echo 
"<p>...and its index is: " key$authors ) . ".</p>";
echo 
"<p>The next element is: " next$authors ) . ".</p>";
echo 
"<p>The previous element is: " prev$authors ) . ".</p>";
echo 
"<p>The first element is: " reset$authors ) . ".</p>";
echo 
"<p>The last element is: " end$authors ) . ".</p>";
echo 
"<p>The previous element is: " prev$authors ) . ".</p>";

?>
</div>    <!-- end of content -->

<div id="footer">
    <p>
        &bull; Copyright&copy; <?php echo(date("Y")); ?> Don Alexander Eckford (Dxander, DxanderDev)
    </p>
</div>

</div>    <!-- end of page -->
</body>
</html>
<?php
// Include the footer file (assumed to contain closing HTML and scripts)
include('includes/footer.php');
?>