Thread: php e-mail form
View Single Post
Old 05-08-2009, 03:31 PM   #10 (permalink)
kmote
 

Join Date: Jul 2005

Location: England

Posts: 2,172

kmote has a spectacular aura aboutkmote has a spectacular aura about

Default Re: php e-mail form

No, those labels are still wrong, they shouldn't be right the way around the form elements. Where you have
Code:
<label for="Name">Name
<input type="text" name="Name" id="Name" />
</label>
it should be
Code:
<label for="Name">Name</label>
<input type="text" name="Name" id="Name" />
EDIT: See HTML label tag and also don't double post.
__________________
MSI P43 Neo|Enermax Pro82+ 425W|E5200|silent 8500GT|250GB Samsung spinpoint F1|Samsung SATA DVD RW|4GB Corsair|Antec SOLO|openSUSE11


There are in order of increasing severity: lies, darn lies, statistics, and computer benchmarks. - diskinfo man page

Last edited by kmote; 05-08-2009 at 03:36 PM.
kmote is offline