<tr>
            <th width="2%" align="left"><input type='checkbox' name='checkall' onclick='checkUncheckAll(this);' class="check_radio" /></th>
            <th width="15%" align="left">First Name</th>
            <th width="15%" align="left">Last Name</th>
            <th width="10%" align="center">Email</th>
            <th width="20%" align="center">Date</th>
            <th width="10%" align="center">Amount</th> 
            <th width="20%" align="center">Status</th>
            <th width="28%" align="center">Action</th>
        </tr>
        </thead>
        <tbody>
        <?php 
    $i = 0;
    while ($donation = MySql::Instance()->myArray($paging->result)) {
        $class = CommonFunc::tr_class($i);
        ?>
        <tr class="<?php 
        echo $class;
        ?>
">
            <td width="2%">
                <input type='hidden' name='visible_donation_ids[]' value='<?php 
        echo $donation['donation_id'];
        ?>
' />
                <input type='checkbox' name='donation_ids[]' value='<?php 
        echo $donation['donation_id'];
        ?>
' class="check_radio" /></td>
            <td align="left"><?php