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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.