visitor Posted October 30, 2010 Share Posted October 30, 2010 Hi Guys, have you got an idea how I can create a user management system with login and pw, please? I tried the below, but when I click on the "ADD NEW USER" button nothing happens <div> <fieldset> <legend>USER DETAILS</legend> <table> <tr> <td align="right"><a title='NAME' href='user_edit.php?id=1'>NAME</a></td> <td> <input class="norm" type="text" name="name" id="name" /></div> </td> <td align="right"><a title='SURNAME' href='user_edit.php?id=2'>SURNAME</a></td> <td> <input class="norm" type="text" name="surname" id="surname" /></div> </td> </tr> <tr> <td align="right"><a title='E-MAIL ADDRESS' href='user_edit.php?id=3'>E-MAIL ADDRESS</a></td> <td colspan="4"> <input class="norm" type="text" size="57" name="e-mail" id="e-mail" /></div> </td> </tr> <tr> <td align="right"><a title='LOGIN' href='user_edit.php?id=4'>LOGIN</a></td> <td> <input type="text" name="login" id="login" /></div> </td> <td align="right"><a title='PASSWORD' href='user_edit.php?id=5'>PASSWORD</a></td> <td> <input class="norm" type="text" name="password" id="password" /></div> </td> </tr> </table> </fieldset> </div> <br /> <div> <fieldset> <input type='submit' name='delete' value='DELETE USER' onclick='confirm("ARE YOU SURE?");'/> <input type='submit' name='add' value='ADD NEW USER'/> </fieldset> </div> cheers, ozzo Quote Link to comment https://forums.phpfreaks.com/topic/217324-how-to-create-a-user-management-system/ Share on other sites More sharing options...
Pikachu2000 Posted October 30, 2010 Share Posted October 30, 2010 You're missing <form></form> tags, and a way to process the submitted data . . . Quote Link to comment https://forums.phpfreaks.com/topic/217324-how-to-create-a-user-management-system/#findComment-1128499 Share on other sites More sharing options...
visitor Posted October 30, 2010 Author Share Posted October 30, 2010 Hi, do you mean something like this...? <form method="post" thanks ozzo Quote Link to comment https://forums.phpfreaks.com/topic/217324-how-to-create-a-user-management-system/#findComment-1128503 Share on other sites More sharing options...
Pikachu2000 Posted October 30, 2010 Share Posted October 30, 2010 Zacly. Then you also need a script to process the submitted data and a way to store the user information, such as a database. Quote Link to comment https://forums.phpfreaks.com/topic/217324-how-to-create-a-user-management-system/#findComment-1128508 Share on other sites More sharing options...
chrules Posted October 31, 2010 Share Posted October 31, 2010 Take a look at this http://www.evolt.org/node/60384 Maybe a bit complex, but a very comprehensive system ... But basicly, like Pikachu2000 said, you need a form to process the user login, then you need to send that form to a php script that checks if the user exists in database, if yes, you can proceed. Form.html --> checkform.php --> site.html... But that's just a very simple and not secure way. If you can, then try and play with the system in the link at the top. Quote Link to comment https://forums.phpfreaks.com/topic/217324-how-to-create-a-user-management-system/#findComment-1128514 Share on other sites More sharing options...
visitor Posted October 31, 2010 Author Share Posted October 31, 2010 Great! Thank you so much for this script... cheers, ozzo Quote Link to comment https://forums.phpfreaks.com/topic/217324-how-to-create-a-user-management-system/#findComment-1128605 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.