Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help with a Form design

Status
Not open for further replies.

rastaIT34

Technical User
Sep 9, 2009
103
US
I designed and developed a registration form that you can see here:



i used a pretty simple php form validator

a couple of questions:

> i am still learning how to create a proper form. i know there are a bunch of site out there that will design a form for you... but i want complete control over the look. How does this for look to you?

> the major issue i am having is blank emails with no forms filled out... to make sure the user fills in all the text fields i added a validator for each field. ( you can test it) i still am getting blank emails. i thought the validator was supposed to prevent that?

> would adding a anti-spam checker fix this?

any help would be appreciated. thank you.

Artist/Designer
 
Hi
[ul]
[li]Use the [tt]taborder[/tt] attribute consistently, currently tabbing over the form fields is a pain.[/li]
[li]Update the [tt]for[/tt] attributes of [tt]label[/tt] tags, they left as you copy & pasted them, so clicking the labels jumps the focus chaotically.[/li]
[li]Use HTML semantically, reading the page source full of [tt] [/tt] used for indenting is uncomfortable.[/li]
[li]Use CSS for formatting, the [tt]font[/tt] tag is deprecated, its use makes the design hard to adjust and the source code hard to read.[/li]
[li]Use unique [tt]id[/tt] attributes, duplicated [tt]id[/tt]s often lead to hardly debuggable behavior.[/li]
[li]If you have problem with the PHP validation, you have to post the PHP code. But not here, forum434 is the place for such questions.[/li]
[/ul]


Feherke.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top