Login   Register  
PHP Classes
elePHPant
Icontem

File: code/views/grid.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Junaid Hassan  >  PHP MVC  >  code/views/grid.php  >  Download  
File: code/views/grid.php
Role: Application script
Content type: text/plain
Description: grid.php
Class: PHP MVC
MVC framework that loads XML configuration files
Author: By
Last change:
Date: 2013-04-27 07:20
Size: 655 bytes
 

Contents

Class file image Download
<div><h2>Fetched Data</h2></div>
<div>
    <table width="100%" border="0">
        <tr>
            <td><strong>Column 1</strong></td>
            <td><strong>Column 2</strong></td>
            <td><strong>Column 3</strong></td>
        </tr>
        <?php while ($rec mysql_fetch_object($rs)) { ?>
            <tr>
                <td></td>
                <td></td>
                <td></td>
            </tr>
            <tr>
                <td><?php echo $rec->col1?></td>
                <td><?php echo $rec->col2?></td>
                <td><?php echo $rec->col3?></td>
            </tr>
        <?php ?>
    </table>