Jump to content

How to insert math formulas in PHP?


Lorenzdakid

Recommended Posts

With this code, I am trying to create a guessing game. When I press the START button, I want it display a guess, highest, and the lowest number between 1-100. The highest number being 100, and the lowest being 1. I'm trying to get the math formula to do this equation (Guess = round((Highest +Lowest))/2. Can any one give me a hand.

 

 

<head>
<title>
Project 3
</title>
</head>

<body>

<h1>Guessing Game</h1>
<form method='post' action=''> <input type='submit' name='start' id='start' value='Start Game'>
<form method='post' action=''> <input type='submit' name='higher' id='higher' value='Higher'>
<form method='post' action=''> <input type='submit' name='lower' id='lower' value='Lower'>
<?php
if (isset($_POST['start'])) {






print"<input type = 'hidden' name = 'hdnCount' value = '$count'> 
	<input type = 'hidden' name = 'hdntop' value = '$top'>
	<input type = 'hidden' name = 'hdnbottom' value = '$bottom'>
	<input type = 'hidden' name = 'hdnguess' value = '$guess'>";
}





if (isset($_POST['higher'])) { 

$count = $_REQUEST["hdnCount"];
$top = $_REQUEST["hdntop"];
$bottom = $_REQUEST["hdnbottom"];
$guess = $_REQUEST["hdnguess"];





print"	<input type = 'hidden' name = 'hdnCount' value = '$count'> 
	<input type = 'hidden' name = 'hdntop' value = '$top'>
	<input type = 'hidden' name = 'hdnbottom' value = '$bottom'>
	<input type = 'hidden' name = 'hdnguess' value = '$guess'>";


}



if (isset($_POST['lower'])) { 

$count = $_REQUEST["hdnCount"];
$top = $_REQUEST["hdntop"];
$bottom = $_REQUEST["hdnbottom"];
$guess = $_REQUEST["hdnguess"];





print"	<input type = 'hidden' name = 'hdnCount' value = '$count'> 
	<input type = 'hidden' name = 'hdntop' value = '$top'>
	<input type = 'hidden' name = 'hdnbottom' value = '$bottom'>
	<input type = 'hidden' name = 'hdnguess' value = '$guess'>";



}



?>


</form>
</body>
</html>

Link to comment
https://forums.phpfreaks.com/topic/257555-how-to-insert-math-formulas-in-php/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.