Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

General Discussion

Submit Button not showing.

Hi guys I am sure that I am missing something small but I just can't spot it. I just finished the video ' Creating input fields' and, my submit button is not showing up.

<?php include('inc/header.php'); ?>

<div class="section page">
<div class="wrapper">

<h1>Contact</h1>

<p>I&rsquo;d love to hear from you! Complete the form to send me an email.</p>

<form method="post" action="contact-process.php">

<table>
<tr>

<th>

<label for="name">Name</label>

</th>
<td>
<input type="text" name="name" id="name">

</td>

</tr>

<tr>

<th>

<label for="email">Email</label>

</th>
<td>
<input type="text" name="email" id="email">

</td>

</tr>

<tr>

<th>

<label for="message">Message</label>

</th>
<td>
<textarea name="message" id="message"></textarea>

</td>

</tr>

</table>
<input type"submit" value="Send">

</form>

</div>

</div>

    <?php include('inc/footer.php'); ?>

This is my code. May someone please tell me what I'm doing wrong. I want to move on but I've gotta fix this first. Thanks in advance.

2 Answers

You forgot the "=" sign in your submit button 'input type="submit" value="Send"'

Thank Andrei Mondoc that totally worked :)