Welcome Guest, Not a member yet? Register   Sign In
Codigniter grouping in views
#3

Hi Paul! Smile

Thanks for your help. I am now reading your suggestion so I can try it. 

Here's my view:
Code:
<?php
if ($questions):
    $ctr = 0;
    foreach ($questions as $question):
        $ctr++;
        ?>
        <div class="panel panel-default">

            <div class="panel-heading">
                <?php echo $question['question_title']; ?>
            </div>

            <div class="panel-body">
                <?php echo $question['choices_title']; ?>
            </div>

        </div>

        <?php
    endforeach;
endif;
?>

So basically, it will just display a boostrap panel, with the question as heading, and in the body, the choices are listed.

Thanks again Paul for guiding me. I will give a feedback asap.  Smile Smile
Reply


Messages In This Thread
RE: Codigniter grouping in views - by PaulD - 10-28-2017, 07:56 AM
RE: Codigniter grouping in views - by danangeloalcanar - 10-28-2017, 07:11 PM
RE: Codigniter grouping in views - by PaulD - 10-29-2017, 04:27 AM



Theme © iAndrew 2016 - Forum software by © MyBB