Webbserverprogrammering 1

Show sourcecode

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

webbsrvprg/exercises/strings/

strings.php
strings1.php
strings1fb.php
strings2.php
strings2fb.php
strings3.php
strings3fb.php
strings4.php
strings4fb.php
strings5.php
strings5fb.php
strings6.php

strings4.php

17 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">
  <title>Stränghantering</title>
</head>
<body>
  <form method="post" action="strings4fb.php">
      <input type="text" name="fnamn" placeholder="Förnamn"><br>
      <input type="text" name="enamn" placeholder="Efternamn"><br>
      <input type="text" name="epost" placeholder="E-post"><br>
      
      <input type="submit" value="Skicka">
    </form>
</body>
</html>