Week 4 - Variables
Quadratic Calculator!
Ax^2 + Bx + C
CODE FOLLOWS
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Week 4 Variables</title>
<link rel="stylesheet" href="../css/styles.css">
</head>
<body>
<?php include("../includes/header.php"); ?>
<h1>Week 4 - Variables</h1>
<h2>Quadratic Calculator!</h2>
<h3>Ax^2 + Bx + C</h3>
<form method="GET" action="week-4.my-example.php">
<label for="a">A: </label>
<input type="number" id="a" name="a"><br><br>
<label for="b">B: </label>
<input type="number" id="b" name="b"><br><br>
<label for="c">C: </label>
<input type="number" id="c" name="c"><br><br>
<input type="submit" value="Submit" name="submit">
</form>
<br>
<?php
// Check if form is submitted
if (isset($_GET['submit'])) {
$a = isset($_GET['a']) ? $_GET['a'] : 0;
$b = isset($_GET['b']) ? $_GET['b'] : 0;
$c = isset($_GET['c']) ? $_GET['c'] : 0;
if ($a == 0) {
echo "<p style='color:red;'>Invalid input: 'A' cannot be zero in a quadratic equation.</p>";
} else {
// Quadratic formula: (-b ± sqrt(b² - 4ac)) / 2a
$neg_b = $b * -1;
$b_sq = $b * $b;
$fourAC = 4 * $a * $c;
$step_1 = $b_sq - $fourAC;
if ($step_1 < 0) {
echo "<p>No real solutions.</p>";
} else {
$step_2 = sqrt($step_1);
if ($step_2 == 0) {
$x1 = ($neg_b + $step_2) / (2 * $a);
echo "<p>Solution: <strong>" . $x1 . "</strong></p>";
} else {
$x1 = ($neg_b + $step_2) / (2 * $a);
$x2 = ($neg_b - $step_2) / (2 * $a);
echo "<p>Solutions: <strong>" . $x1 . ", " . $x2 . "</strong></p>";
}
}
}
}
?>
<br>
<?php include("../includes/footer.php"); ?>
</body>
</html>