Webbserverprogrammering 1

Show sourcecode

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

webbutv3/word-app/scripts/

create-user.php
index.php
initialize-db.php
insert.php
insert_page.php
test.php
translate.php

insert_page.php

21 lines ASCII Windows (CRLF)
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <form action="" method="post">
        <textarea rows="30" name="words" id="words"></textarea>
        <select name="lang" id="lang">
            <option value="ES">Spanish</option>
            <option value="EN">English</option>
        </select>
        <button>submit</button>
    </form>
</body>

</html>