Jump to content

Incrementing each answer text box


Xtremer360

Recommended Posts

With each question its supposed to increment +1 and its not doing so. Its only showing 1 for each.

 

<?php 
                            while ($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) {
                                $i = 1
                            ?>
                                <dl>
                                
                                    <dt style="width: 190px;"><label for="answer[<?php echo $row['id']; ?>]"><?php echo $row['question'] ?></label></dt>
                                    <dd><input type="text" name="answer<?php echo $i ?>[<?php echo $row['id']; ?>]" class="answers[]" size="54" /></dd>
                                
                                </dl>
                            <?php
                            }
                            ?>

Link to comment
Share on other sites

Well, first off you need to define $i with the initial value of 1 outside the loop, otherwise it will reset to 1 every loop. Then you need to increment $i every loop (++$i):

 

<?php 
                            $i = 1;
                            while ($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) {
                            ?>
                                <dl>
                                
                                    <dt style="width: 190px;"><label for="answer[<?php echo $row['id']; ?>]"><?php echo $row['question'] ?></label></dt>
                                    <dd><input type="text" name="answer<?php echo $i ?>[<?php echo $row['id']; ?>]" class="answers[]" size="54" /></dd>
                                
                                </dl>
                            <?php
                            ++$i;
                            }
                            ?>

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.