Hi,
I just need to know what is the best method to use for just pulling one object from a DB?
$getBname = "SELECT bandName from $table WHERE loginName = '$loginName'";
$result1 = mysql_query($getBname, $conn) or die(mysql_error());
$bName= WHAT DO I PUT HERE?($result1);
I know you use mysql_fetch_array for multiple but what is the best to use for a single item?
Thanks