Hi mrhappiness,
Thanks for replying. I tried all 3 to no avail.
$q2 = mysql_query ("SELECT DISTINCT Name FROM log ORDER BY Name LIMIT $start,$limit");
This code gave me the same results. Didn't change the output.
$q2 = mysql_query ("SELECT DISTINCT BINARY Name FROM log ORDER BY Name LIMIT $start,$limit");
This code returned 0 results.
$q2 = mysql_query ("SELECT Name FROM log GROUP BY LOWER(Name) ORDER BY Name LIMIT $start,$limit");
This code gave me the same results. Didn't change the output.
And the file type is varchar(100).