Login security tutorials

United States
February 9, 2007 2:00pm CST
Need a little help. I want to understand how to setup login security such as Username and Password to access other parts of a site. Anyone know of any good free or pay tutorials on setting this up? Thanks
2 responses
@kingadnan (1538)
• Pakistan
12 Feb 07
No, IIS(Internet Information Server) also enables us to work on php it supported, you can configure it. i love php it is easy to learn, great language, you can also learn JAVA, because java is more and more secure than other languages, thanks buddy
1 person likes this
• United States
12 Feb 07
The hosting company said I could but it would be fairly expensive. My cheaper and easier in that regard o switch to a Linux server then. Thank You for your post.
• Indonesia
10 Feb 07
you should recognize basic server side scripting language to do this such as : PHP,ASP,ASP.NET,ColdFusion,CGI,Perl etc. and also standard HTML form the concept of security loggin is using session and/or cookies so you must enabled them in your browser setting then create an HTML page that consist of form elements textbox of username and password and also submit button. then create an server side page for example you use ASP to handle this name it proccess.asp. the file consist of some codes like i shown below : '***** Get The Form Value user = request.form("user") pass = request.form("pass") '*** Validate if user = "username" and pass = "somepass" then session("isLogged")=true end if '*** go to the direction page if session("isLogged")Then Response.Redirect("younewpage.html") End if Thats it :) you can add more complicated validation and also more form element as neccesary.
• United States
12 Feb 07
Thank you and unfortunately I am looking for something bit more complicated and a little more detailed about how to place the files on the server.