|
Piotr GRD
|
 |
« Reply #6 on: December 12, 2008, 06:00:38 PM » |
|
To not confusing dominantsoccer more...
Database is only a database. In the database you can store login informations, users names, ids, passwords etc., but as is it's not enough. You need to have some "system", some script (in example PHP script) which will actually display all informations, check the data provided by user, compare it with data already stored in database etc.
Like this forum: in the database there is only something like: USERS: Piotr GRD, password, ..., ..., dominantsoccer, password, ..., ..., TOPICS: My SQL help, php my admin, ...., .... etc.
But you need a forum script, a PHP system that is taking the data from the database, handling all of the processes, displaying the topics, posts, checking your password when you enter it, handling sessions, cookies... much much more.
You can create your own login system, but you need to know PHP (or alternatively some othe programming language), you need to know SQL (to know how to write and read from the database). Or you can install some already made script, in example some CMS (Content Management System) or some more simple available in the net (or even on this forum in "how to" section) login and user management script.
|