What I'm doing is randomizing some numbers (1 to 100 for example) and then doing a query based on the outcome of those numbers (lets say 1-75 = "Common", 76-100 = "Uncommon" for simplicity).
Now that I have these, I find the number of rows in my query (lets say there are 5 rows returned for the results of the query). Now I take that number and do this:
$number_stuff = rand(1, $number_of_rows);
Now that I have THAT number I want to go back and do another query where I select that specific row's information. Unfortunately this is the part I don't know how to do. At the very least I want to grab my primary key field, which is a unique number to each row, from the specific row. At most I want to grab all the information from this random row.