Заранее спасибо!
Просто хочу спросить, как рассчитать окружность и площадь круга, используя html и php
мой код примерно такой
<html>
<head><title>Practise</title></head>
<body>
<form method=post>
Circumference of a Circle or the Area <br>
The Radius of the circle: <input type="text" name="num1"><br>
<input type="submit" value="Submit"></form><hr>
<?php
$num=$_POST["3.14"]*$_POST["num1"];
echo "The Circuference of the circle is $num<br>";
?>
<hr>
</body>
</html>
EDIT:
Спасибо за ответы !!! так что я сделал это, но я не вижу php один, когда я пытался просмотреть его в Internet Explorer.
Это код, который я сделал:
Circumference of a Circle or the Area: <br>
The Radius of the circle: <input type="text" name="radius"> <br>
<input type="submit" value="Submit"> <hr>
<?php
$rad = (float) $_POST['radius'];
$cir = $rad * 2 * pi();
$area = pow($rad, 2) * pi();
echo "The circumference of the circle is:" $cir.;
echo "The area of the circle is:" $area.;
?>
Кажется, это все еще не работает, чего мне не хватает?