anyone kno of any good sources for coding username and login

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
phpIsKillingMe
Forum Newbie
Posts: 5
Joined: Wed Oct 22, 2003 7:02 pm

anyone kno of any good sources for coding username and login

Post by phpIsKillingMe »

hi im new to this programming thing..can someone tell me a good source to get ideas on how to create forms for a user to type in their username and password..like what you'd see in a login gui. thanks..
d3ad1ysp0rk
Forum Donator
Posts: 1661
Joined: Mon Oct 20, 2003 8:31 pm
Location: Maine, USA

Post by d3ad1ysp0rk »

Code: Select all

<form action="page.php" method="post" name="form1">
<table>
<tr>
<td>Username: </td>
<td><input type="text" name="usr" size="15"></td>
</tr>
<tr>
<td>Password: </td>
<td><input type="password" name="pwd" size="15"></td>
</tr>
<tr>
<td colspan="2" width="100%"><input type="submit" name="submit" value="Login"></td>
</form>
That's the code to make the form. Not the actual script.
User avatar
volka
DevNet Evangelist
Posts: 8391
Joined: Tue May 07, 2002 9:48 am
Location: Berlin, ger

Post by volka »

you might find a tutorial that serves your needs at http://www.evilwalrus.com/search.php?ca ... arch=login
phpIsKillingMe
Forum Newbie
Posts: 5
Joined: Wed Oct 22, 2003 7:02 pm

Post by phpIsKillingMe »

thanks
Post Reply