Hello Im looking for a very kind person to make me a fast mysql query what i need is a query that checks the words in the table "words" and diplayes the top 3 words used and the possiblebility to get redirected to http://mypage.com/words.php?=[word pressed] when the word in top is pressed. i hope someone can help me
$get_list = mysql_query("SELECT * FROM `word_list` ORDER BY `word_hits` DESC"); while($each = mysql_fetch_assoc($get_list)){ echo "<a href=\"word.php?word=".$each['word_title']."\">".$each['word_title']."</a>"; } PHP: Peace,