PHP Classes

File: uploady/supported.php

Recommend this page to a friend!
  Classes of Faris AL-Otabi   Uploady PHP Upload File to MySQL   uploady/supported.php   Download  
File: uploady/supported.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Uploady PHP Upload File to MySQL
Store file upload details in a MySQL database
Author: By
Last change: Update of uploady/supported.php
Date: 5 months ago
Size: 1,187 bytes
 

Contents

Class file image Download
<?php
include_once 'session.php';
include_once
APP_PATH . 'logic/supportedLogic.php';
?>

<?php include_once 'components/header.php'; ?>

<div class="container pb-5 pt-5">
  <div class="card">
    <div class="card-header">
      <?= $lang["general"]['supported_formats'] ?>
</div>
    <div class="card-body">
      <div class="table-responsive">
        <table class="table table-bordered" id="supported" width="100%" cellspacing="0">
          <thead>
            <tr>
              <th><?= $lang["general"]['format']; ?></th>
              <th><?= $lang["general"]['max_size']; ?></th>
              <th><?= $lang["general"]['status'] ?></th>
            </tr>
          </thead>

          <tbody>
            <?php foreach ($filter['extensions'] as $key => $value) : ?>
<tr>
                <td class="font-weight-bold"><?= $key ?></td>
                <td class="font-weight-bold"><?= MAX_SIZE; ?></td>
                <td class="font-weight-bold"><?= $lang["general"]['allowed'] ?></td>
              </tr>
            <?php endforeach; ?>
</tbody>
        </table>
      </div>
    </div>
  </div>
</div>

<?php include_once 'components/footer.php'; ?>