在此先感謝!使用html和php計算圓圈
剛想問怎麼計算周長和圓的使用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>
編輯:
感謝您的答案!所以我這樣做了,但當我試圖在Internet Explorer上查看它時,我看不到這個php。
這是我做的代碼:
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.;
?>
它似乎仍然沒有工作,雖然,我缺少什麼?
這不是 「DoMyHomework.com」 – 2011-05-19 03:56:28
是的,該域名已被蹲下。但它可能是domyhomework.ws。那個是免費的。 – 2011-05-19 03:59:57