Welcome to my Function Game!
Try and get to 10
Current Value: 0
Your choice to add or subtract: 1
Game State: Keep Trying!
Try and get to 10
Current Value: 0
Your choice to add or subtract: 1
Game State: Keep Trying!
<?php
include('../includes/header.php');
error_reporting(E_ALL); // set error reporting to all
//into
echo('<h1>Welcome to my Function Game!</h1>');
//instructions
echo('<p>Try and get to 10');
//post values
$gamevalue = isset($_POST['gamevalue']) ? (int)$_POST['gamevalue'] : 0;
$randnum = isset($_POST['randnum']) ? (int)$_POST['randnum'] : random_int(1, 5);
//Addition Function
function additionfunc($gamevalue, $randnum){
return $gamevalue + $randnum;
}
//Subtration Function
function subtractionfunc($gamevalue, $randnum){
return $gamevalue - $randnum;
}
//Victory Function
function victoryfunc($gamevalue){
return($gamevalue == 10) ? "You Have Won!" : "Keep Trying!";
}
//display game status
function gamestatus($gamevalue, $gamestate, $randnum){
echo("<p>Current Value: $gamevalue</p>");
echo("<p>Your choice to add or subtract: $randnum</p>");
echo("<p>Game State: $gamestate</p>");
}
//adding or subtracting based on selection
if(isset($_POST['addition'])){
$gamevalue = additionfunc($gamevalue, $randnum);
$randnum = random_int(1, 5);
}elseif(isset($_POST['subtraction'])){
$gamevalue = subtractionfunc($gamevalue, $randnum);
$randnum = random_int(1, 5);
}
//Calling game status function
gamestatus($gamevalue,victoryfunc($gamevalue), $randnum);
//Game form
?>
<form action="myfunction.php" method="POST">
<input type="hidden" name="gamevalue" value="<?php echo $gamevalue ?>">
<input type="hidden" name ="randnum" value="<?php echo $randnum ?>">
<button type="submit" name="addition">Add</button>
<button type="submit" name="subtraction">Subtract</button>
</form>
<?php
include('../includes/footer.php');
?>