<?php
include('../includes/header.php');
// code
error_reporting(E_ALL);
echo('<h1>My Function Example</h1>');
$step = isset($_POST['step']) ? $_POST['step'] : 0;
$num = isset($_POST['num']) ? $_POST['num'] : 5;
$word = isset($_POST['word']) ? $_POST['word'] : "Hello World!";
$multiplier = isset($_POST['multi']) ? $_POST['multi'] : 2;
$step = htmlentities($step);
$num = htmlentities($num);
$word = htmlentities($word);
$multiplier = htmlentities($multiplier);
if ($step == 0) // first time into this form
{
?>
<form action="my-function.php" method="POST">
<label for="word">Enter a word: </label>
<input type="text" size="36" id="word" name="word" value="">
<br><br>
<label for="num">Enter a number: </label>
<input type="text" size="36" id="num" name="num" value="">
<br><br>
<label for="multi">Enter a multiplier number: </label>
<input type="text" size="36" id="multi" name="multi" value="">
<br><br>
<input type="hidden" name="step" value="1">
<input type="submit" name="submit" value="Submit">
</form>
<?php
} else // create the string
{
// <!--create three functions (or more) to do operations,
//such as a function that take a value and performs a
//calculation, or a function that does text manipulation
//and present the results, or a function that returns an HTML change-->
function calcMultiply($num, $multiplier){
return $num*$multiplier;
}
function txtManipulate($txt, $multiplier){
return str_repeat($txt, $multiplier);
}
function displayInfoEntered($txt, $num, $multiplier){
echo("<br><br>You entered " . $num . " for the number.");
echo("<br><br>You entered " . $txt . " for the word.");
echo("<br><br>and you entered " . $multiplier . " for the multiplier.");
}
echo($num . " multiplied by " . $multiplier . " is " . calcMultiply($num, $multiplier));
echo("<br><br>This is " . $word . " repeated " . $multiplier . " times: " . txtManipulate($word, $multiplier));
displayInfoEntered($word, $num, $multiplier);
echo("<br><br>");
}
// provide a form to try again
if (!$step == 0){
?>
<form action="my-function.php" method="POST">
<input type="hidden" name="step" value="0">
<input type="submit" name="submit" value="Try Again">
</form>
<?php
}
include('../includes/footer.php');
?>