Nasıl checkbox seçimine dayalı kullanıcıları listelemek için?

1 Cevap

Ben bir metin alanı var ve iki onay kutularını, ben seçimine dayalı kullanıcıları listelemek gerekir. Herkes bana bir örnek gösterebilir misiniz.

1 Cevap

Bkz:

http://stackoverflow.com/questions/1082152/enumerate-all-check-box-in-php

<input name="rows[]" value="someVal" type="checkbox" />
<input name="rows[]" value="anotherVal" type="checkbox" />

<?php
    // $_POST['rows'] contains the values of all checked checkboxes

    //if something has been checked
    if(isset($_POST['rows'])) {

        //loop over each checked value
        foreach ($_POST['rows'] as $row) {
            echo $row . '<br />';
        }
    }
?>