05 - PHP

Recuperare laborator

Laboratorul 7 (09.04.2022) nu se tine, vom extinde laboratorul 6 (02.04.2022) pentru a recupera. Astfel

  • laboratorul de la 10:00-12:00 va incepe la 9:00 si se va termina la 12:00
  • laboratorul de la 12:00-14:00 va incepe la 12:00 si se va termina la 15:00

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

Informatii Utile

Tools:

Documentatie:

Exercitii

  1. Creati un formular cu doau camputi “Nume” si “Email”.
<!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>

formular subscribe rezultat formular subscribe

  1. Creati un formular care va ajuta sa adunati doua numere. Folotiti o functie pentru adunarea a doua numere. formular adunare rezultat formular adunare

  2. 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>