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.

Domain Names
Free Online Games
Stock Directory
Game Search Engine
Domain Name Directory
Domain Articles
Web Hosting Directory
Cheap Domain Registration

 

   


Form Validation

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;
}

return true;
}
</script>
</head>

<body>

<form action="someform.cgi" method="post"
onSubmit="return validateForm();">

Name:
<br>
<input type="text" name="name" id="name">
<p>

Password:
<br>
<input type="password" name="password" id="password">
<p>

Email address:
<br>
<input type="text" name="email" id="email">
<p>

Age:
<br>
<input type="text" name="age" id="age">
<p>

<input type="submit" value="Submit Form">
</form>

</body>
</html>

Tutorial By Xtasy