Q:

Area of Triangle in Php

0

Area of a triangle is calculated by the following Mathematical formula,

 

(base * height) / 2 = Area  

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Area of Triangle in PHP

Program to calculate area of triangle with base as 10 and height as 15 is shown.

Example:

<?php  
 $base = 10;  
 $height = 15;  
 echo "area with base $base and height $height= " . ($base * $height) / 2;  
 ?>  

Output:

 

Area of Triangle with Form in PHP

Program to calculate area of triangle by inserting values in the form is shown.

Example:

<html>  
<body>  
<form method = "post">   
Base: <input type="number" name="base">   
<br><br>  
Height: <input type="number" name="height"><br>   
<input type = "submit" name = "submit" value="Calculate">   
</form>   
</body>   
</html>  
<?php   
if(isset($_POST['submit']))  
    {   
$base = $_POST['base'];   
$height = $_POST['height'];   
$area = ($base*$height) / 2;   
echo "The area of a triangle with base as $base and height as $height is $area";   
}   
?>   

Output:

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now