Link to home
Start Free TrialLog in
Avatar of Xtry
Xtry

asked on

Create User With Password

hello,
 What im trying to do is when a user goes to my page info.php
 and he inputs his information I want the script to create
 him an account

------------------------------------
            <table width="197">
              <tr>
                <td width="251" align="right">Name:</td>
                <td ALIGN="left" width="152">
                  <input type="text" name="Name" size="20"> </span>
                </td>
              </tr>
              <tr>
                <td width="251" align="right">ID</td>
                <td ALIGN="left" width="152">
                  <input type="text" name="ID" size="20"> </td>
              </tr>
              <tr>
                <td width="251" align="right">Email:</td>
                <td ALIGN="left" width="152">
                  <input type="text" name="Email" size="20">
                </td>
              </tr>
              <tr>
                <td width="251" align="right">Password:</td>
                <td ALIGN="left" width="152">
                  <input type="text" name="Password" size="20"> </td>
              </tr>
                </table>
------------------------------------

thanks
Avatar of newaira
newaira

So what do you want us to do?
... do you have mySQL or some database on the back end or not? Have you done anything?
Avatar of Xtry

ASKER

yes I do have MySQL,
I want my friends to be able to make their accounts.
then my account will be admin and im the only one who
can write in the (notes) section so they can login and see
each one of their respeftive information something like
-friend01: monday and wednesday 6 hours
-friend02: monday and wednesday 8 hours
so they can login and see how many hours they have to work,
I dont want others to see someone's notes.
ps. im the only one who can write on the notes.
thanks
So what is the problem, the fact that you don't know where/how to begin, or that you want someone to do it for you?

First create a table in the database with 4 fields. Something along the lines of ID, username, password, email.
Then create a new row every time someone creates a new account.
etc.
ASKER CERTIFIED SOLUTION
Avatar of NetExpert
NetExpert

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial