I would like to display 2 rows of 5 but i can't seem to think of the logic behind. Help is appreciated.
$sql = " SELECT KEYWORD, COUNT(*) Count_Duplicate
FROM {$_POST['btn']}
GROUP BY KEYWORD
HAVING COUNT(*) > 1
ORDER BY COUNT(*) DESC
LIMIT 10";
This is my SQL query part and i echo it like this,
echo $row['KEYWORD'] .", " ." " ;