Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to add value using javascript on div. but when I try this It is not working. onclick function not working. can any one please help me, when I put the follow even onclick function also not working.

function handler(var1, quizId, isCorrect, score, questions) {
    alert(var1);
    //var id = parseInt(quizId);
    document.getElementById('questions').innerHTML = questions;
    quizId++;
    var points = 10;
    if (isCorrect == 'true') {
        score = score + points;
        var string_url = "quiz.php?qusId=" + quizId + "&score=" + score + "&questions=" + questions;
        setTimeout(function() {
            window.location = string_url
        }, 5000);
    }
    else {
        var string_url = "quiz.php?qusId=" + quizId + "&score=" + score + "&questions=" + questions;
        setTimeout(function() {
            window.location = string_url
        }, 5000);
    }
}

<body>
<?php 
$qusId=$_GET['qusId'];
$passscore=70;
$name=$_POST['name'];
if(isset($_GET['score'])){
    $score=$_GET['score'];
}
else{
    $score=0;
}
?>
<form action="test.php" method="POST">


   <?php
            $result = select("SELECT * FROM questions WHERE question_id='$qusId'");
            //$row = mysql_fetch_array($result);


        ?>
<?php
$i=$_GET['qusId'];

if($qusId<11){



while($row = mysql_fetch_array($result))
{
?>
<table width="581" height="175" border="0" align="center">
<tr>
<td><h4><?php echo $i.'.' .$row['questions']; ?></h4>
<?php $i++; ?>
</td>
</tr>
<tr>
<td>
<?php $qId=$row['question_id'];?>
<?php

$result1=select("SELECT * FROM answers WHERE questionId='$qId' ORDER BY RAND()");
while($row1=mysql_fetch_array($result1)){

    ?><input type="radio" name="answers" value="<?php echo $row1['answers'];?>"  onclick="handler('<?php echo $row1["feedback"]; ?>',<?php echo $qusId;?>,'<?php echo $row1["isCorrect"]; ?>',<?php echo $score;?>,'<?php echo $row["questions"];?>')
"/ ><?php echo $row1['answers']; ?><br/>







<?php 
} ?>
&nbsp;</td>
</tr>

</table>
<p>
  <?php
}
}

else{
    ?>
</p>
<p>
<table>
<tr><td>
Your Score:<?php echo $score;?><br/><br/>
Pass Score:<?php echo $passscore;?><br /><br/>


<?php if($score>=$passscore){?>
Result:Congratulation! You Have passed the questionnaire.<br/><br/
<?php }else{ ?>
Result:Sorry! Please <a href="/uaquiz/index.php">Try again</a><br/>
<?php } ?>

 </p>
    </td></tr>
    <tr><div id="questions"></div>
    </table>


    <?php


}
?>
</form>
</body>
share|improve this question
Have you checked in a dev console to see if there's any errors being thrown? – mbinette Sep 26 '12 at 4:17
PHP and Javascript don't mix. You should be posting the rendered HTML. – ahren Sep 26 '12 at 4:18
no, how to check that??? – Sirojan Gnanaretnam Sep 26 '12 at 4:18
That would help too. – mbinette Sep 26 '12 at 4:18
1  
document.getElementById('questions') returns null. – ahren Sep 26 '12 at 4:25
show 4 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.