What would the conditional statement be to filter these inputs?

Posted by dmanexe on Stack Overflow See other posts from Stack Overflow or by dmanexe
Published on 2010-03-26T18:13:53Z Indexed on 2010/03/26 18:23 UTC
Read the original article Hit count: 328

Filed under:
|
|
|
|

I have a page with a form, and on the form are a bunch of input check boxes. In the following page, there's the following code to process the inputs from the page before (which are set as an ID).

<? $field = $this->input->post('measure',true);
$totals = array();

    foreach($field as $value):
        $query = $this->db->get_where('items', array('id' => $value['input']))->row();

        $totals[] = $query->price; 
        ?>
    #HTML for displaying estimate output here
    <?php endforeach; ?>

How would I have the loop run conditionally only if there was a check on the input on the page before?

© Stack Overflow or respective owner

Related posts about mvc

Related posts about php