On the web you can find abundant number of Open source Forum scripts, many of the famous names are VBulletin, IPB, PhpBB,SMF etc, PunBB is a very speedy growing forum script that is a very outstanding scripting and excellent feature sets. This article would be covering every aspect of setting up and using a PunBB Forum.
http://yourdomain.com/forum/index.phpComplete PunBB Forum setup guide, modification, Run Guide
SQL injection is a code injection technique that exploits a security vulnerability occurring in the database layer of an application. The vulnerability is present when user input is either incorrectly filtered for string literal escape characters embedded in SQL statements or user input is not strongly typed and thereby unexpectedly executed. It is an instance of a more general class of vulnerabilities that can occur whenever one programming or scripting language is embedded inside another. SQL injection attacks are also known as SQL insertion attacks.
Forms of vulnerability
Incorrectly filtered escape characters
This form of SQL injection occurs when user input is not filtered for escape characters and is then passed into an SQL statement. This results in the potential manipulation of the statements performed on the database by the end user of the application.
The following line of code illustrates this vulnerability:
statement = "SELECT * FROM users WHERE name = '" + userName + "';" Read the rest of this entry »
Below are the screen shots with steps, Begin by clicking database in your phpMyAdmin panel.

You may have several databases. Click the one that holds your WordPress data, the database you created when you installed

This shows only default tables. You may have more tables — this would happen if you have any statistics plugins or anti-spam plugins.

About
MySQL is currently the most popular open source database server in existence. On top of that, it is very commonly used in conjunction with PHP scripts to create powerful and dynamic server-side applications.
MySQL has been criticized in the past for not supporting all the features of other popular and more expensive DataBase Management Systems. However, MySQL continues to improve with each release (currently version 5), and it has become widely popular with individuals and businesses of many different sizes.
What is a Database?
A database is a structure that comes in two flavors: a flat database and a relational database. A relational database is much more oriented to the human mind and is often preferred over the gabble-de-gook flat database that are just stored on hard drives like a text file. MySQL is a relational database.
In a relational structured database there are tables that store data. The columns define which kinds of information will be stored in the table. An individual column must be created for each type of data you wish to store (i.e. Age, Weight, Height).
Intro About MYSQL