<?php
include('../includes/header.php');
error_reporting(E_ALL);
echo('<h1>Carla\'s Variable Example</h1>');
echo('<h2>Perimeter of a Rectangle Calculator</h2>');
$length = isset($_GET['length']) ? $_GET['length'] : '';
$width = isset($_GET['width']) ? $_GET['width'] : '';
$perimeter = '';
if ($length !== '' && $width !== '' && is_numeric($length) && is_numeric($width))
{
$perimeter = 2 * ($length + $width);
}
?>
<form action="my-variable-example.php" method="GET">
<label for="length">Length:</label>
<input type="text" id="length" name="length" value="<?php echo htmlentities($length); ?>">
<br><br>
<label for="width">Width:</label>
<input type="text" id="width" name="width" value="<?php echo htmlentities($width); ?>">
<br><br>
<input type="submit" value="Calculate Perimeter">
</form>
<?php
if ($perimeter !== '') {
echo "<h2>Perimeter of Rectangle: $perimeter</h2>";
}
include('../includes/footer.php');
?>