I need help with HTML/JavaScript/PHP?

lamm3r

New member
i need to create a website for my class (using HTML JavaScript and even PHP if necessary)...something like facebook but on a smaller scale, and since i don't feel like messing around with sign up forms i just want to create a database with all the user names and corresponding passwords so that they can access their profiles. how can i do this, and what do i need to do it

so far i have this

<form name="login" action="Login" align="right">

Username<input type="user"name="user1">

<br>Password <input type="password" name="password1">

<br>

<input type="submit"name="button"value="login">

</form>

what do i have to create in order to check that the user name and password are corresponding?
also how can i set up a JS script which takes the person to his personal webpage when he/she enters the username and password

i.e
username = Array("user1".....
password = Array("password1"....
self.location.href = "www.domain.com/user1"

i'm really new to this so i'm not even sure how to do this...when i change www.domain.com to for example www.google.com it takes me to google when i enter correct password and username
 
Back
Top