Exemple #1
0
    <div align="center">

      <h1>TABLES</h1>

      <form method="post">

        <table>
          <tr>
            <th>DAO</th>
            <th>TABLE NAME</th>
            <th>TABLE COMMENT</th>
            <th>OBJECT NAME (singular)</th>
            <th>OBJECTS NAMES (plural)</th>
          </tr>
<?php 
$tables = $Engine->getTables();
foreach ($tables as $table) {
    $English = new English($table['TABLE_NAME']);
    ?>
          <tr>
            <td align="center"><input type="checkbox" name="tables[<?php 
    echo $table['TABLE_NAME'];
    ?>
]" checked></td>
            <td><?php 
    echo $table['TABLE_NAME'];
    ?>
</td>
            <td><?php 
    echo $table['TABLE_COMMENT'];
    ?>