say I have this
$result = mysql_query(\'SELECT views FROM post ORDER BY views ASC\');
and I want to use the value at index 30 I assumed I
Are you sure there are 30 elements in $result? You might want to check to see if 30 > mysql_num_rows().