JezK
Edit File: categoryDetails.php
<?php include("header.php"); if (!isset($_REQUEST['cid'])) { echo "<script>window.location='categoriesManagement.php';</script>"; } $id = $videocon->encrypt_decrypt('decrypt', $_GET['cid']); $catData = $videocon->categories($id); if (count($catData) <= 0) { echo "<script>alert('Invalid details');window.location='categoriesManagement.php';</script>"; } ?> <?php $catimage = 'img/dummybusinesspic.png'; if ($catData['0']['image'] != '' && file_exists('uploads/' . $catData['0']['image'])) { $catimage = 'uploads/' . $catData['0']['image']; } ?> <section class="section-padding"> <div class="container bg-white mt-2 p-4 my-4"> <div class="row pull-right p-4"> <button type=button class="btn btn-sm btn-primary w-20"><a href="categoriesManagement.php">Back</a></button> </div> <div class="row mt-5"> <div class="col-12 mb-4"> <img class="mx-auto d-block" src="<?php echo $catimage; ?>"> </div> </div> <h2 class="text-center mb-4"><?php echo $catData['0']['name']; ?></h2> <!-- <div class="row"> <a href="#" class="col text-center viewStyles">Krify Design services & Motion graphics</a> </div> <div class="row"> <div class="col"> <div class="mx-auto p-2 text-center addressColor"> <span><i class="fa fa-map-marker fa-lg" aria-hidden="true"></i> 7-49, Ratan Towers, ABD Road, Thimmapurm, Kakinada, Andhra Pradesh, 533005</span> </div> </div> </div> --> <hr class="new2"> <div class="row justify-content-center"> <div class="col-8 mx-auto"> <table class="w-100 text-center"> <thead> <tr class="addressColor"> <th>ADDED DATE</th> <th>ACTION</th> </tr> </thead> <tbody> <tr> <td><?php echo date('m-d-Y', strtotime($catData['0']['date'])); ?></td> <td><a href="editCategory.php?cid=<?php echo $_REQUEST['cid']; ?>" class="viewStyles">Edit</a></td> </tr> </tbody> </table> </div> </div> <hr class="new2"> </div> </section> <?php include("footer.php"); ?>