Ok I have the following query for MySQl
"SELECT * FROM `{$survey_answers}` ORDER BY 'Q{$i}-RND{$RND}' ASC";
The query works fine and I can do a loop to get all results, but i dont want all results I just need row $N, $M, and $O for statistical annalysis. Which are intigers approx 1/4 1/2 and 3/4 of way through the results.
Please note Table Not Indexed by ‘Q{$i}-RND{$RND}’ which = somthing like Q1-RND1 … etc
Thanks In advance. I am sure it is a simple command that I am missing, but for the life of me I cannot find it in the online manuel for PHP or MYSQL.