|
Server IP : 2a02:4780:11:1017:0:31f1:b895:8 / Your IP : 216.73.216.163 Web Server : LiteSpeed System : Linux in-mum-web917.main-hosting.eu 4.18.0-553.37.1.lve.el8.x86_64 #1 SMP Mon Feb 10 22:45:17 UTC 2025 x86_64 User : u837925013 ( 837925013) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u837925013/domains/tech2wizard.com/public_html/admin/inc/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
include("conn.php");
if($_POST['type']==1){
$get_coupon= mysqli_fetch_array($con->query("select * from coupon_master WHERE id='".$_POST['id']."'"));
?>
<form method="post" action="" name="datafrm" id="datafrm" enctype="multipart/form-data">
<input type="hidden" name="id"id="id" value="<?php echo $get_coupon['id'] ?>" />
<div class="modal-body">
<div class="form-group">
<label class="form-control-label font-weight-bold">Coupon Code<span class="text-danger">*</span></label>
<input type="text" class="form-control" placeholder="Enter Coupon Code" value="<?php echo $get_coupon['coupon_code'] ?>"id="coupon_code" name="coupon_code" required="" />
</div>
<div class="form-group">
<label class="form-control-label font-weight-bold">Coupon Value<span class="text-danger">*</span></label>
<input type="text" class="form-control" placeholder="Enter Coupon Value" value="<?php echo $get_coupon['coupon_value'] ?>"id="coupon_value" name="coupon_value" required="" />
</div>
<div class="form-group">
<label class="form-control-label font-weight-bold">Coupon Type<span class="text-danger">*</span></label>
<select class="form-control" name="coupon_type" required="">
<option value="">Select</option>
<option value="Percentage"<?php if($get_coupon['coupon_type']=='Percentage'){echo 'selected';} ?>>Percentage</option>
<option value="Rupee"<?php if($get_coupon['coupon_type']=='Rupee'){echo 'selected';} ?>>Rupee</option>
</select>
</div>
<div class="form-group">
<label class="form-control-label font-weight-bold">Cart Min Value<span class="text-danger">*</span></label>
<input type="text" class="form-control" placeholder="Enter Cart Min Value" value="<?php echo $get_coupon['cart_min_value'] ?>"id="cart_min_value" name="cart_min_value" required="" />
</div>
<div class="status"></div>
</div>
<div class="modal-footer">
<input type="submit" name="datafrmSubmit" id="datafrmSubmit"value="Update"class="btn btn--primary w-100">
</div>
</form>
<?php } ?>