Skip to content
This repository was archived by the owner on Dec 1, 2022. It is now read-only.

Latest commit

 

History

History
24 lines (23 loc) · 668 Bytes

File metadata and controls

24 lines (23 loc) · 668 Bytes

hello-form.php

<!DOCTYPE html>
<html>
    <head>
        <title>Hello 1</title>
    </head>
    <body>
        <form action="hello-response.php" method="GET">
            <label>Say</label>
            <select name="greeting">
                <option value="">*[Select a greeting]</option>
                <option value="Hello">Hello</option>
                <option value="Hi">Hi</option>
                <option value="Top o' the mornin">Top o' the mornin</option>
            </select>
            <label>to</label>
            <input type="text" name="username"/>
            <input type="submit" value="Submit"/>
        </form>
    </body>
</html>