Yep. Databases... as the name suggests, are used to save 'data' (organised information) in them.
Forums are an excellent working example of how you can utilize a database.
Basically we use 3 things :
1. HTML
2. PHP
3. MySQL
You see *this* HTML page. You type and create a post. Now when you "Submit" the post, the post's content goes to the web server. There PHP processes the data, and asks MySQL to store it in appropriate tables. (
Read this post to know the basic terminology).
Simple. Now when another user browses the same page, PHP asks the MySQL to 'fetch' your post, and then display it using HTML.
