Without a doubt, you will find a wide variety of
developer and webmaster resources that include
tutorials, articles, 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.
Put the following code on any page you wish to password
protect with javascript. On going to this page a script prompt
will pop-up asking for the password. If correct access will be
allowed, if incorrect that user will be redirected to a
defined page.
CODE
<script language="JavaScript">
<!--hide
var password;
var pass1="PASSWORD GOES HERE";
password=prompt('enter password',' ');
if (password==pass1)
alert('correct password');
else
{
window.location="URL IF WRONG PASSWORD";
}
//-->
</script>