
August 25th, 2012, 01:49 AM
|
|
Registered User
|
|
Join Date: Aug 2012
Posts: 1
Time spent in forums: 5 m 39 sec
Reputation Power: 0
|
|
Quote: | Originally Posted by Orfantal hi can someone help with this problem.
my submit button will not do anything
my code for the form is:
Code:
<div id="contact_form"
<form name="contact" action="send_mail.php" method="post">
Name: <input style="width:180px;"type="text" name="name"></input><br><br>
Telephone: <input style="width:180px;"type="text" name="telephone"></input><br><br>
E-mail: <input style="width:180px;"type="text" name="email_address"></input><br><br>
<label style="vertical-align: top;">Message:</label>
<textarea style="width:179px" type="text" name="message" rows="8"></textarea><br><br>
<input id="submit" type="submit" value="Send Message"></input>
</form>
</div>
i tested the form code in a seperate page to the one i want it in and it does work, could it be my css or sumthing like that stopping it?
Thanks in advance |
Hi, I see you are missing the closing ">" in the <div> tag.
<div id="contact_form" .... use <div id="contact_form">
|