User Registration Part 4 - English

4713 visits



Outline:

User Registration Part 4 Inserting inputed information from the user into the database table through query. mysql_connect("hostname", "username", "password") - Connect to the Database Server with the authorized user and password. mysql_select_db("database_name") - This selects a database within a connected database server mysql_query('TYPE_HERE_YOUR_MYSQL_QUERY') - It is used to run specific queries on our database. Here it inserts different fields into the database table.