Jump to content

[SOLVED] just an error which i am not sure about


jeppers

Recommended Posts

this code works until i press the submit button and there is data entered in the boxes, i get this error

 

 

Fatal error: Function name must be a string in C:\test\cost.php on line 18

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Cost Calculator</title>
</head>
<body>
<?php //cost calculator 

//address error handling
ini_set ('display_errors', 1);
error_reporting (E_ALL & ~E_NOTICE);

//this function makes the calculations 
function calculate_total ($quantity, $price) {

$total = $quantity * $price; // Calculation 
$total = $number_format ($total, 2); // formatting
return $total; //  Return that value 

}// end of function 

if (isset ($_POST['submit'])) { //handle form 

//Checks for values
if ( is_numeric ($_POST['quantity'])AND is_numeric ($_POST['price'])){
	//call the function and display the results 
	$total = calculate_total ($_POST['quantity'], $_POST['price']);
	print "<p>Your total comes to $<b>$total</b></p>";

}else{// inapproprite values enterd 
	print "<p>Please enter a valid quantity and price</p>";

}

}else {//display form

	print '<form action="cost.php" method="post">
	<p>Quantity: <input type="text" name="quantity" size="3" /></p>
	<p>Price: <input type="text" name="price" size="5" /></p>
	<input type="submit" name="submit" value="Calculate" />
</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.