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 7403017
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T04:56:27+00:00 2026-05-29T04:56:27+00:00

I have the following code- <?php $input = array(); for($i=0; $i<15; $i++) $input[]=$i; shuffle($input);

  • 0

I have the following code-

     <?php
                $input = array();
                for($i=0; $i<15; $i++)
                $input[]=$i;
                shuffle($input);

                $file="data.xml";
                $test= new SimpleXMLElement($file, null, true); ?>
                 <?php      

                          for($i=0; $i<5; $i++) {
                  ?> 

                <form action="submit.php" method="post" id="form">
                     <p id="ques"><?php echo $test->easy->question[$input[$i]]->ques?> </p>
                     <p id="option"><input type="radio" name="<?php echo $input[$i]?>" value="0" /><?php echo $test->easy->question[$input[$i]]->option[0]; ?></p>
                     <p id="option"><input type="radio" name="<?php echo $input[$i]?>" value="1" /><?php echo $test->easy->question[$input[$i]]->option[1]; ?></p>
                     <p id="option"><input type="radio" name="<?php echo $input[$i]?>" value="2" /><?php echo $test->easy->question[$input[$i]]->option[2]; ?></p>
                     <p id="option"><input type="radio" name="<?php echo $input[$i]?>" value="3" /><?php echo $test->easy->question[$input[$i]]->option[3]; ?></p>   
                 </form>
      <?php } ?>  

Now, in the submit page how do I use the input name $input[i] ?
$_POST[what do I write here?] ?

  • 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-05-29T04:56:28+00:00Added an answer on May 29, 2026 at 4:56 am

    You initialized $input to contain 0..15 in a random order. Next you chose the first 5 entries via $i, so input[$i] will have a random number between 0 and 15. If you use this as a name attribute, you will not have a constant set of POST parameters to use.

    So I suggest you do something like:

    <form action="submit.php" method="post" id="form">
        <p id="ques"><?php echo $test->easy->question[$input[$i]]->ques?> </p>
        <input type="hidden" name="question" value="<?php echo $i; ?>">
        <p id="option"><input type="radio" name="q<?php echo $input[$i]?>" value="0" /><?php echo $test->easy->question[$input[$i]]->option[0]; ?></p>
        ....
        <p id="option"><input type="radio" name="q<?php echo $input[$i]?>" value="3" /><?php echo $test->easy->question[$input[$i]]->option[3]; ?></p>   
    </form>
    

    In the submit page read $_POST['question'], this gives you back your $i, then read $_POST["q$i"]

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

Sidebar

Related Questions

I have the following code: <h2>Add System</h2> <?php echo $this->Form->create('ReleaseServer'); echo $this->Form->input('server_name',array('error'=>array( 0 =>
In my cakephp form I have following code <p> <?php echo $form->input('option[]',array('size'=>13)); ?> </p>
i have the following code : <input type=text value=<?php echo $_GET['msg']; ?>> This input
I have code that looks like the following: <form id=MyForm name=MyForm method=post action=index.php> <input
In PHP I have the following code that gets a file submitted through CGI:
I have following code: $boxId = 1; $explainationBox='<input type=button id=<?php echo $boxId; ?> value=send
I have the following code: <?php $this->beginWidget('zii.widgets.jui.CJuiDialog', array( 'id'=>'mydialog', // additional javascript options for
I have the following code: <?php echo $form->create('User', array('url' => array('controller' => 'users', 'action'
currently I have following code: home.php <form name='myformname' id='myformid'> <input type='text' name='mytext1' value='abc'> <input
I have the following code where I declare a PHP array variable and inside

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.