Html css php failling to create a database

<link rel="stylesheet" href="style.css">

<head>

    <h1>Application Form</h1>

</head>

<body>

    <form class="form-inline" action="conn.php" method="POST">

    <table>

        <tr>

            <td> <label for ="First Name">First name:</label></td>

               <td> <input type="FirstName" id="First Name" placeholder="" name="firstname"></td>

            <td><label for="College">College</label></td>

               <td><select id="College" name="college">

                    <option

                    value="Medecine and Health science">Medecine and Health science</option>

                    <option 

                    value="Law and Liberal arts">Law and Liberal arts</option>

                    <option

                    value="Economic and Business Sciences">Economic and Business Sciences</option>

                </select></td>

        </tr>

        <tr>

            <td><label for="Last Name">Last Name:</label> </td>

               <td> <input type="Last Name" id="Last Name" placeholder="" name="lastname"></td>

            <td> <label for="Department">Department</label> </td>

              <td> <select id="Department" name="department">

                    <option 

                    value="Bs">Bs</option>

                    <option

                    value="Law">Law</option>

                    <option

                    value="Arts">Arts</option>

                    <option

                    value="HS">HS</option>

                    <option

                    value="Eco">Eco</option>

                </select></td>

        </tr>

        <tr>

            <td><label for="Gender">Gender</label></td>

               <td> <input type="Gender" id="Gender" placeholder="" name="gender"></td>

            <td> <label for="Programme">Programme</label></td>

                <td><input type="Programme" id="Programme" placeholder="" name="program"></td>

        </tr>

    </table>

    <div class="form-button">

    <button type="reset">clear</button>

        <button type="submit" name="submit">submit</button> 

    </div>

    </form>

</body>

Firstly, welcome to the forums.

While we are primarily here to help people with their Free Code Camp progress, we are open to people on other paths, too. Some of what you are asking might be pretty trivial in the Free Code Camp context, so you might find that if you’re not getting the instruction and material you need in your current studies, the FCC curriculum will really help you get started. At a modest guess I’d say investing a 4-5 hours working through the curriculum here will really pay off. You can find the curriculum at https://www.freecodecamp.org/learn.

With your current questions, we don’t have enough context to know what you already know or don’t know, so it is impossible to guide you without just telling you the answer (which we won’t do). We also have no idea what you are trying to achieve: you have provided no clues to this, you have just posted some HTML code without any context.

It is pretty typical on here for people to share a codepen / repl.it / jsfiddle example of what they have tried so that anyone helping has more of an idea of what help is actually helpful.

Please provide some example of what you’ve tried and I’m sure you’ll get more help.

Happy coding :slight_smile: