Document Document Webbserv1: Källkod
Webbserverprogrammering 1

Show sourcecode

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

Webbserverprogrammering/exercises/

frågetest.php
include1.php
include2.php
include2sida2.php
include2sida3.php
index.php
ovn_form1.php
ovn_form2.php
ovn_form3.php
ramverk1.php
ramverk2.php
ramverk3.php
welcome1.php
welcome2.php
welcome3.php

ovn_form3.php

34 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<body>
<header>Ovn 3</header>
<form action="welcome3.php" method="POST">
  Förnamn: <input type="text" name="fornamn"><br>
  Efternamn: <input type="text" name="efternamn"><br>
  Klass: <input type="text" name="klass"><br>
  Favoritmat: 
  <select Name="maträtt" Size="7">  
    <option> Pizza </option>  
    <option> Tacos </option>  
    <option> Hamburgare </option>  
    <option> Sushi </option>  
    <option> Kebab </option>  
    <option> Pasta </option>  
  </select>  
  Favoritkurs:

  <input type="checkbox" id= "svenska" name="kurs1" value="Svenska">
  <label for="svenska">Svenska</label><br>
  <input type="checkbox" id="Matte" name="kurs2" value="Matte">
  <label for="Matte">Matte</label><br>
  <input type="checkbox" id="Engelska" name="kurs3" value="Engelska">
  <label for="engelska">Engelska</label>
  <input type="submit">
</body>
</html>