echo Language::string(124);
?>
</b></td>
            </tr>
        </table>
    </legend>
    <select id="formTableSelectMySQLTable" class="fullWidth ui-widget-content ui-corner-all">
        <option value="0">&lt;<?php 
echo Language::string(73);
?>
&gt;</option>
        <?php 
$sql = "SHOW TABLES";
$z = mysql_query($sql);
while ($r = mysql_fetch_array($z)) {
    if (in_array($r[0], Ini::get_system_tables()) || strpos($r[0], Table::get_table_prefix()) !== false && strpos($r[0], Table::get_table_prefix()) == 0) {
        continue;
    }
    ?>
            <option value="<?php 
    echo $r[0];
    ?>
"><?php 
    echo $r[0];
    ?>
</option>
        <?php 
}
?>
    </select>
</fieldset>