Here is a small peice of code I just made for you.
Hope it helps you.
<?PHP
$host = "localhost";
$user = "root";
$pass = "";
$db = "";
mysql_connect($host, $user, $pass) or die(mysql_error());
mysql_select_db($db) or die(mysql_error());
if (isset($_GET['user_name'])) {
$username = mysql_real_escape_string($_GET['user_name']);
$query = mysq
Forum:
WampServer English