Laboratorul 7 (09.04.2022) nu se tine, vom extinde laboratorul 6 (02.04.2022) pentru a recupera. Astfel
In practica fiecare laborator va fi extins cu o ora. Pentru a va ajuta cu proiectele o sa avem o ora de consultatii in saptamana 8, dar o sa stabilim mai tarziu exact cand (in functie de partialele voastre). Laborator PHP
Prezentarea Curs si informatii utile
Tools:
Documentatie:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>PHP Form</title>
</head>
<body>
<main>
<?php if ($_SERVER['REQUEST_METHOD'] === 'GET') : ?>
<div class="well">
<form action="..." method="post">
...
</form>
</div>
<?php else : ?>
...
<?php endif ?>
</main>
</body>
</html>
Creati un formular care va ajuta sa adunati doua numere. Folotiti o functie pentru adunarea a doua numere.
Completati codul de mai jos
<html>
<body>
<p> What is the closest number to 79 in the array [ 1, 4, 20, 69, 100, 145, 163, 244, 268]?</p>
<?php
function computeClosestNumber($target, $array) {
return "fix me"
}
$closestNumber = computeClosestNumber(79, array(1, 4, 20, 69, 100, 145, 163, 244, 268));
echo "The closest number is $closestNumber";
?>
</body>
</html>