So it is late, I maybe just be tired but I cannot think of how to do this correctly any help would be rad!! So I have a loop that selects all the true false questions that correspond to question I want to ask. So the query goes through successfully but then I get an array of results I don't want an array of results,how should I do this?? Sorry if this is a really easy question... new (:
while($i < $arraysize)
{
$gettf[$i] = "<br>SELECT question FROM questions WHERE QuestionType = '$type' and questionID='".$questionnumbers[$i] . "'";
//echo $gettf[$i];
$gottf[$i] = mysql_query($gettf);
$i++;
}
D