<?php
include('../includes/header.php');
// code
error_reporting(E_ALL);
echo('<h1>My Array Example</h1>');
$step = isset($_POST['step']) ? $_POST['step'] : 0;
$num1 = isset($_POST['num1']) ? $_POST['num1'] : 0;
$num2 = isset($_POST['num2']) ? $_POST['num2'] : 0;
$num3 = isset($_POST['num3']) ? $_POST['num3'] : 0;
$step = htmlentities($step);
$num1 = htmlentities($num1);
$num2 = htmlentities($num2);
$num3 = htmlentities($num3);
if ($step == 0) // first time into this form
{
?>
<form action="array-example.php" method="POST">
<label for="num1">Input first number: </label>
<input type="text" size="36" id="num1" name="num1" value="">
<br><br>
<label for="num2">Input second number: </label>
<input type="text" size="36" id="num2" name="num2" value="">
<br><br>
<label for="num3">Input third number: </label>
<input type="text" size="36" id="num3" name="num3" value="">
<br><br>
<input type="hidden" name="step" value="1">
<input type="submit" name="submit" value="Submit">
</form>
<?php
} else // create the string
{
$array[] = $num1;
$array[] = $num2;
$array[] = $num3;
echo("<br>Original order: ");
print_r($array);
$array2 = array("First Number"=>$num1, "Second Number"=>$num2, "Third Number"=>$num3);
echo("<br><br>Third Number: ");
echo $array2["Third Number"];
echo("<br><br>First Number: ");
echo $array2["First Number"];
echo("<br><br>Second Number: ");
echo $array2["Second Number"];
sort($array);
echo("<br><br>Array sorted in ascending order: ");
print_r($array);
rsort($array);
echo("<br><br>Array sorted in descending order: ");
print_r($array);
echo("<br><br>var_dump: ");
var_dump($array);
}
// provide a form to try again
if (!$step == 0){
?>
<form action="array-example.php" method="POST">
<input type="hidden" name="step" value="0">
<input type="submit" name="submit" value="Try Again">
</form>
<?php
}
include('../includes/footer.php');
?>