Example #1
0
<table border="1" style="width: 90%; margin-left: auto; margin-right: auto;"
       class="table table-striped table-bordered table-hover">
    <thead>
        <tr>
            <td>
                Name
            </td>
            <td>
                Description
            </td>
        </tr>
    </thead>
    <tbody>
        <?php 
//show database tables
$database_tables = Database::get_database_tables($database_info['Database_ID']);
while ($table = mysqli_fetch_assoc($database_tables)) {
    ?>
            <tr>
                <td>
                    <a href="table_info.php?table_id=<?php 
    echo $table['Table_ID'];
    ?>
"><?php 
    echo $table['Table_Name'];
    ?>
</a>
                </td>
                <td>
                    <?php 
    echo $table['Table_Description'];