ok
Direktori : /proc/thread-self/root/home2/selectio/public_html/ramali.in/dashboard/ |
Current File : //proc/thread-self/root/home2/selectio/public_html/ramali.in/dashboard/terms-conditions.php |
<?php include "header.php"; ?> <html> <head> <title>Terms Conditions | <?= $settings['app_name'] ?> - Dashboard</title> </head> </body> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <?php $sql = "SELECT * FROM settings"; $db->sql($sql); $res = $db->getResult(); $message = ''; if (isset($_POST['btn_update'])) { if (ALLOW_MODIFICATION == 0 && !defined(ALLOW_MODIFICATION)) { echo '<label class="alert alert-danger">This operation is not allowed in demo panel!.</label>'; return false; } if (!empty($_POST['terms_conditions'])) { $terms_conditions = $db->escapeString($fn->xss_clean($_POST['terms_conditions'])); //Update terms_conditions - id = 10 $sql = "UPDATE `settings` SET `value`='" . $terms_conditions . "' WHERE `id` = 10"; $db->sql($sql); $sql = "SELECT * FROM settings"; $db->sql($sql); $res = $db->getResult(); $message .= "Terms Conditions Updated Successfully"; } } ?> <section class="content-header"> <h1>Terms Conditions</h1> <h4><?= $message ?></h4> <ol class="breadcrumb"> <li><a href="home.php"><i class="fa fa-home"></i> Home</a></li> </ol> <hr /> </section> <section class="content"> <div class="row"> <div class="col-md-12"> <!-- general form elements --> <div class="box box-primary"> <div class="box-header with-border"> <h3 class="box-title">Update Terms Conditions</h3> </div> <!-- /.box-header --> <!-- form start --> <form method="post"> <div class="box-body"> <div class="form-group"> <label for="app_name">Terms & Conditions:</label> <textarea rows="10" cols="10" class="form-control" name="terms_conditions" id="terms_conditions" required><?= $res[9]['value'] ?></textarea> </div> </div> <!-- /.box-body --> <div class="box-footer"> <input type="submit" class="btn-primary btn" value="Update" name="btn_update" /> </div> </form> </div> <!-- /.box --> </div> </div> </section> <div class="separator"> </div> </div><!-- /.content-wrapper --> </body> </html> <?php include "footer.php"; ?> <script type="text/javascript" src="css/js/ckeditor/ckeditor.js"></script> <script type="text/javascript"> CKEDITOR.replace('terms_conditions'); </script>