Okay what I chose to do was, on the second file that the form submits to, I say if the response is null, then display the first form file again. However, it brings up only the submit button, nothing else. Why might tat be?
(Note: I also tried bringing up a intermediate file, which refreshes to the first file that displays the form, such as :<meta http-equiv="refresh" content="5;url=http://......./pollq.php"> That also just brings up the submit button, nothing else, no radio button options or anything. )
if (is_null($response))
{
include("pollq.php");
}
else
{//the rest of the entire code that updates and displays the answer}
So again, when pollq is called if the answer is null, it only dsplays the submit button. What might be the reason and how can I fix so it brings the whole form again, like it correctly does at the first loading?