Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

webbserverprogrammering/exercises/formular/

ovning_1.php
ovning_1_mottagare.php
ovning_2.php
ovning_2_mottagare.php
ovning_3.php
ovning_3_mottagare.php
ovning_4.php
ovning_4_mottagare.php
ovning_5.php
ovning_5_mottagare.php

ovning_2.php

15 lines UTF-8 Windows (CRLF)
<!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="https://cdn.jsdelivr.net/npm/water.css@2/out/dark.css">
  <title>Övning 1</title>
</head>
<body>
  <form method="GET" action="ovning_2_mottagare.php">
    <input type="text" name="skickat" placeHolder="Ange ditt namn">
    <input type="submit" value="Skicka">
  </form>
</body>
</html>