Your IP : 216.73.216.26


Current Path : /home2/wtmwscom/public_html/admin/
Upload File :
Current File : /home2/wtmwscom/public_html/admin/extend_time.php

<?php 
$title= "Extend Time";
include 'header.php';
if(!isset($_GET['help_id'])){
    redirect('./report_receiver.php');
}
else{
        $row = mysqli_fetch_object(mysqli_query($connection,"SELECT extend FROM help WHERE confirm_status=0 AND help_id='".$_GET['help_id']."'"));
?>
    <h1>Extend Time</h1>
   <div class="container-fluid">
<?php echo getMessage();?>
    <div class="row">
        <div class="col-sm-12">
            <div class="page-title-box">
                <h4 class="page-title">Extend Time</h4>
<!--                <ol class="breadcrumb">
                    <li class="breadcrumb-item"><a href="index.php">Home</a></li>
                    <li class="breadcrumb-item"><a href="#"></a></li>
                    <li class="breadcrumb-item active">Change Password</li>
                </ol>-->
            </div>
        </div>
    </div>
    <!-- end row -->
    <div class="row">
        <div class="col-12">
            <div class="card m-b-20">
                <div class="card-body">
                    <form name="form" id="form" action="extend_time_model.php" method="post">
                        <div class="form-group row">
                            <!--                                            <label for="example-text-input" class="col-sm-2 col-form-label">Text</label>-->
                            <label class="col-sm-2 col-form-label" for="extend_time">Select Time <span>*</span></label>
<!--                                            <label class="col-sm-2 col-form-label" for="dob"> Name<span>*</span></label>-->
                            <div class="col-sm-10">

                                <input class="form-control" type="text" name="extend_time" id="extend_time" required="required" value="<?php echo $row->extend;?>">
                            </div>
                        </div>
                        <div class="form-group">
                            <div>
                                 <input type="hidden" name="help_id" value="<?php echo $_GET['help_id'];?>" />
                                <button name="submit" type="submit" id="submit" value="Submit" OnClick="return confirm('Are you sure for extend time');" class="btn btn-primary waves-effect waves-light">
                                    Submit
                                </button>
                            </div>
                        </div>
                     
                    </form>
                </div>

            </div>
        </div> <!-- end col -->
    </div> <!-- end row -->


</div> <!-- container-fluid -->
<?php }?>
<?php include 'footer.php';?>