Without a doubt, you will find a wide variety of
developer and webmaster resources that include
scripts, tutorials, website ideas, website reviews,
and a developer resource directory.
Developer
Checklist These are the basic
steps involved in any development project:
Start with an idea
Research idea
Make a content plan
Buy a domain
Gather content
Buy or design template
Get logo made
Structure site
Fill in content
Find web hosting
Upload site
Visit other websites that are
owned and operated by Developerz.com.
Form Validation can be a usefull tool in making sure user(s)
filling out the form fill in defined fields. The code below is
an example code to show you how basic form validation would
work. Adjust to your needs.
CODE
<html>
<head>
<basefont face="Arial">
<script language="JavaScript">
function validateForm()
{
// check name
if (document.forms[0].elements[0].value ==
"")
{
alert ("Please enter a name!");
return false;
}
// check password length
if (document.forms[0].elements[1].value.length < 6)
{
alert ("Please enter a password
of at least 6 characters!");
return false;
}
// check email address
// check age
if (isNaN(document.forms[0].elements[3].value))
{
alert ("Please enter a valid age!");
return false;
}
// check age range
if (parseInt(document.forms[0].elements[3].value) <
1 ||
parseInt(document.forms[0].elements[3].value) > 99)
{
alert ("Please enter a valid age!");
return false;
}