<?php
        session_start(); 
    if(isset($_POST['next'])){
        $a=$_POST['a'];
    }
    if(!isset($a)){
        $a=0;
    }
        $q = $_SESSION['q']['a'];
    include('dbconfiguration.php');
    $sql1="SELECT * FROM question WHERE question_id='1' LIMIT 1 OFFSET 0 $q";
    $result=mysql_query($sql1);
        echo $sql1;
    echo "<form method='post' action=''>";
    while ($row = mysql_fetch_array($result))
    {
        echo $row['Question']. "<br/>";
        echo "<input type='radio' value='answer1' name='answer'>" .$row['optionone'];
        echo "<input type='radio' value='answer1' name='answer'>" .$row['optiontwo'];
        echo "<input type='radio' value='answer1' name='answer'>" .$row['optionthree'];
        echo "<input type='radio' value='answer1' name='answer'>" .$row['optionfour']. "<br/>";
    }
    $a=$a+1;
    echo "<input type='hidden' value='$a' name='a'>";
            echo "<input type='submit' name='previous' value='previous'> ";
    echo "<input type='submit' name='next' value='next'> ";
    echo "<input type='reset' name='reset' value='Reset'>";
            echo "<input type='submit' name='submit' value='summary'>";
    echo "</form>";
?>

Recommended Answers

All 3 Replies

What do you need from this code?

What's the problem with the code? Please don't use this site to host code snippets if there's no question you have - use http://snipplr.com/

wow it looks great,
where i should use it?? :)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.