So I have a newb problemo. Im learning PHP, and there seems to be something I don't get. Everytime I use this script, it takes all of the names in that Column, where I just want one. This is what I started with. Please correct me.
<?php
$con = mysql_connect("Host name","user","pass");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("Garrysmod_Data", $con);
$result = mysql_query("SELECT * FROM Bans
");
while($row = mysql_fetch_array($result))
{
echo $row['In_Game_Name']; ;
}
mysql_close($con);
?>