<!DOCTYPE html>
<html>
<body>
<h1>Pole i objętość prostopadłościanu</h1>
<form action="">
wysokość:<br>
<input type="text" name="h" value="">
<br>
długość:<br>
<input type="text" name="l" value="">
<br>
szerokość:<br>
<input type="text" name="w" value="">
<br><br>
<input type="submit" value="Submit">
</form>
<?php
if (isset($_GET['h']) && isset($_GET['l']) && isset($_GET['w'])) {
$h = $_GET['h'];
$l = $_GET['l'];
$w = $_GET['w'];
$area = 2 * $h * $l + 2 * $h * $w + 2 * $l * $w;
$volume = $h * $l * $w;
echo "Pole powierzchni prostopadłościanu: " . $area;
echo "<br>";
echo "Objętość prostopadłościanu: " . $volume;
}
?>
</body>
</html>