Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9146113
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T10:40:40+00:00 2026-06-17T10:40:40+00:00

I have a little problem, I try to make an online test but I

  • 0

I have a little problem, I try to make an online test but I need to shuffle answare so
1 is good answare and 2,3 bad but all time appears a = 1 b = 2 c = 3 and i want something to randomize that like a=2 b=3 c=1 how i can do that?

Code is here:

$result = mysql_query( "SELECT * FROM questions ORDER BY RAND() LIMIT 0,10");
while ($row = mysql_fetch_array($result)) {
    $rows[] = $row;
    $question_id = $row['question_id'];
    $question = $row['question'];
    $answare_good = $row['answare_good'];
    $answare_badi = $row['answare_badi'];
    $answare_badii = $row['answare_badii'];
    $number += 1;
    echo '<tr>
    <td rowspan="3" width="10">'.$number.'</td>
    <td rowspan="3" width="70%"><p>'.$question.'</p></td>
    <td width="30%" height="33%"><input type="checkbox" name="a1" id="a1">
    '.$answare_good.'</td>
    </tr>
    <tr>
    <td width="30%" height="33%"><input type="checkbox" name="a2" id="a2">
    '.$answare_badi.'</td>
    </tr>
    <tr>
    <td  width="30%" height="33%"><input type="checkbox" name="a3" id="a3">
    '.$answare_badii.'</td>
    </tr>';

I try something to array shuffle $answare_good & $answare_badi & $answare_badii but i faill.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T10:40:41+00:00Added an answer on June 17, 2026 at 10:40 am

    What about this code:

    $result = mysql_query("SELECT * FROM questions ORDER BY RAND() LIMIT 0,10");
    while ($row = mysql_fetch_array($result)) {
        $rows[] = $row;
        $question_id = $row['question_id'];
    
        $answers = array(
            array('a1', 'val1', $row['answare_good']),
            array('a2', 'val2', $row['answare_badi']),
            array('a3', 'val3', $row['answare_badii']),
        );
        shuffle($answers);
    
        $number += 1;
    
        echo '<tr>
        <td rowspan="3" width="10">'.$number.'</td>
        <td rowspan="3" width="70%"><p>'.$row['question'].'</p></td></tr>';
        foreach($answers as $answer) {
            echo '<tr><td width="30%" height="33%"><input type="checkbox" name="'.$answer[0].'" id="'.$question_id.'-'.$answer[0].'" value="'.$answer[1].'" />'.$answer[2].'</td></tr>';
        }
    }
    

    You would have to specify the value for the checkbox also to be able to get the value of checked answer…

    Also move to PDO or at least mysqli_* functions as mysql_* functions are deprecated now…

    EDIT: Also think of using radio instead of checkbox – assuming user should pick up just one answer. If You want to let the user to pick up more than one (or all three answers), then checkbox is OK.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a little test project to try to resolve a problem I
I've finished my C# application, but I have a little problem: When I try
I need a little help here.So basically I have to make a test of
I have little unusual problem to solve. I need some hint or links to
I have a problem using multiple (2) jQuery plugins. I've googled a little but
I have little problem with a replacement of a little part in an url.
I have little problem in regular expressin creation. Expected input: blahblahblah, blahblahblah, 'blahblahblah', blahblahblah,
I have a little problem about the sort direction of a specific column in
I have a little problem with Jquery getJSON function. my json here { entries:
I have a little Problem with the app that I'm developing. In the App

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.