Hello,
Got a table thats loaded with columns. My code:
$q = mysql_query("SELECT something FROM table ORDER BY best");
while($r = mysql_fetch_array($q)){
// do something
}
Can i add something to the SQL to make it only pick the 10 best columns?
Thanks.