How do I make a Member Table [php]?
-
I want a member table that whenever someone registers the members update on the table saying their username rank and other stuff. MY SQL: http://www.imgbomb.com/i/?w1cqg
-
Answer:
You will need a signup form: <form action="register.php" method="post"> Username: <input type="text" name="username" /> Password: <input type="password" name="password" /> Email: <input type="email" name="email" /> <input type="submit" value="Register" /> And then the file that processes it (register.php): <?php //Connect to database $connect = mysql_connect("localhost", "root", ""); mysql_select_db("members", $connect); //Make user input safe to input to the database, ie. prevent SQL injections $username = mysql_real_escape_string($_POST['usernam… $password = mysql_real_escape_string($_POST['usernam… $email = mysql_real_escape_string($_POST['usernam… mysql_query("INSERT INTO members (username, password, userlevel, email, timestamp, rank) VALUES ('" . $username . "', '" . $password . '", 'Member', '" . $email . "', '" . time() . "', 'Member'); ?> "id" column will be inserted automatically since it's AI (auto increment).
Jakob at Yahoo! Answers Visit the source
Related Q & A:
- How can I make a dynamic web page in PHP?Best solution by Yahoo! Answers
- How can I change a member's name?Best solution by Yahoo! Answers
- How can i become a member of sweetsingles?Best solution by Yahoo! Answers
- How can I make my interests table transparent on Myspace?Best solution by Yahoo! Answers
- How do I become a member in club-penguin without payment?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.