File "constructor_preview.inc.php"

Full Path: /var/www/bvnghean.vn/save_bvnghean.vn/wp-content/plugins/wpDataTables_v1.6.1/templates/constructor_preview.inc.php
File size: 440 bytes
MIME-type: text/html
Charset: utf-8

<table>
    
    <thead>
        <tr>
        <?php foreach( array_keys( $result[0] ) as $header ){ ?>
            <th><?php echo $header ?></th>
        <?php }?>
        </tr>
    </thead>
    
    <tbody>
        <?php foreach( $result as $row ){ ?>
        <tr>
            <?php foreach( $row as $cell ){ ?>
                <td><?php echo $cell ?></td>
            <?php } ?>
        </tr>
        <?php } ?>
    </tbody>
    
</table>