How to make a dynamic table in PHP?

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

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

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.