Jump to content

[SOLVED] Variables within a while statement and mysql


ifis

Recommended Posts

I created a quiz, when it is submitted, I want to correct it using a loop, unfortunatly, the code I wrote is not working.

$limit=$_POST['limit']; 
$question1=$_POST['question1'];
$answer1=$_POST['answer1'];
$question2=$_POST['question2'];
$answer2=$_POST['answer2'];
$question3=$_POST['question3'];
$answer3=$_POST['answer3'];
$i=1;
while ($i<=$limit){
$sql="SELECT answer FROM writtenqs WHERE numquestion='$question$i'";
$result=mysql_query($sql);

$row = mysql_fetch_array($result);
if ($row[answer]==$answer$i)
{
$correct++;
    $qs++;
    echo "Question $i was correct.";
}
else
{
    $qs++;
    echo "Question $i was wrong.";
}
$i++;
}
echo "Your score is $correct/$qs.";

Am I just missing something, or is this not the correct way to do it.  I have tried the code with actual numbers, i.e. question1,answer1 and it worked correctly.  Thanks

Link to comment
Share on other sites

I tried adding in the quotation marks

$row = mysql_fetch_array($result);
if ($row['answer']=='$answer$i')
{

I had to add quotes around $answer$i because it gave me an error.  I think the correct handeling might be '$answer'.'$i' to combine the two variables, I have not had to do this before though

Link to comment
Share on other sites

I created a quiz, when it is submitted, I want to correct it using a loop, unfortunatly, the code I wrote is not working.

$limit=$_POST['limit']; 
$i=1;
while ($i<=$limit){
$sql="SELECT answer FROM writtenqs WHERE numquestion='".$_POST['question$i']."'";
$result=mysql_query($sql);

$row = mysql_fetch_array($result);
if ($row[answer]==$_POST['answer$i']
{
$correct++;
   $qs++;
   echo "Question $i was correct.";
}
else
{
   $qs++;
   echo "Question $i was wrong.";
}
$i++;
}
echo "Your score is $correct/$qs.";

Am I just missing something, or is this not the correct way to do it. I have tried the code with actual numbers, i.e. question1,answer1 and it worked correctly. Thanks

Link to comment
Share on other sites

What error?

 

And yes, use . to merge them as one.

 

I tried adding in the quotation marks

$row = mysql_fetch_array($result);
if ($row['answer']=='$answer$i')
{

I had to add quotes around $answer$i because it gave me an error.  I think the correct handeling might be '$answer'.'$i' to combine the two variables, I have not had to do this before though

Link to comment
Share on other sites

This is a little off topic, but I just check the last post while working.  If I use radio buttons or a drop down menu, do I need additional form validating as long as I am using the $_POST method?

add some validating, otherwise someone can possibly dump your database.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.