uawdijnntqw1x1x1
IP : 216.73.216.26
Hostname : server.wtmmart.in
Kernel : Linux server.wtmmart.in 4.18.0-553.45.1.el8_10.x86_64 #1 SMP Wed Mar 19 09:44:46 EDT 2025 x86_64
Disable Function : exec,passthru,shell_exec,system
OS : Linux
PATH:
/
home2
/
wtmwscom
/
public_html
/
member
/
scripts
/
..
/
extend_time.php
/
/
<?php $title= "Extend Time"; include 'header.php'; $uid = $_SESSION['userid']; if(!isset($_GET['help_id'])){ redirect('./receive_help_request.php'); } else{ $row = mysqli_fetch_object(mysqli_query($connection,"SELECT commit_id, extend FROM help WHERE receive_uid='".$uid."' AND confirm_status=0 AND help_id='".$_GET['help_id']."'")); ?> <h1>Extend Time</h1> <section id="comments"> <?php echo getMessage();?> <form name="form" id="form" action="extend_time_model.php" method="post"> <p> <label for="extend_time">Select Time <span>*</span></label> <select name="extend_time" id="extend_time" required="required"> <option selected="selected">--Select Time--</option> <?php $extend = mysqli_fetch_object(mysqli_query($connection,"SELECT extend FROM help WHERE help_id='".$_GET['help_id']."'"))->extend; if($extend==0){ $i=2; } else{ $i=$extend; } while ($i<=24){ ?> <option value="<?php echo $i;?>" <?php if($row->extend==$i){echo "selected='selected'";}?>><?php echo $i;?> Hours</option> <?php $i++; }?> </select> </p> <p><br /> <input type="hidden" name="help_id" value="<?php echo $_GET['help_id'];?>" /> <input type="hidden" name="commit_id" value="<?php echo $row->commit_id;?>" /> <input style="position: relative; left: 160px;" name="submit" type="submit" id="submit" value="Submit" OnClick="return confirm('Are you sure for extend time');" /> </p> </form> </section> <?php }?> <?php include 'footer.php';?>
/home2/wtmwscom/public_html/member/scripts/../extend_time.php