Xtremer360 Posted June 21, 2011 Share Posted June 21, 2011 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 } ?> Quote Link to comment https://forums.phpfreaks.com/topic/240031-incrementing-each-answer-text-box/ Share on other sites More sharing options...
Alex Posted June 21, 2011 Share Posted June 21, 2011 If I understand what you're asking.. You're never incrementing $i at the end of the loop, as I suspect you intended. Quote Link to comment https://forums.phpfreaks.com/topic/240031-incrementing-each-answer-text-box/#findComment-1232983 Share on other sites More sharing options...
Xtremer360 Posted June 21, 2011 Author Share Posted June 21, 2011 That's correct. I'm not sure where for a while loop I should have it increment. Quote Link to comment https://forums.phpfreaks.com/topic/240031-incrementing-each-answer-text-box/#findComment-1232985 Share on other sites More sharing options...
Alex Posted June 21, 2011 Share Posted June 21, 2011 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; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/240031-incrementing-each-answer-text-box/#findComment-1232987 Share on other sites More sharing options...
Xtremer360 Posted June 21, 2011 Author Share Posted June 21, 2011 Thank you. Quote Link to comment https://forums.phpfreaks.com/topic/240031-incrementing-each-answer-text-box/#findComment-1232988 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.