File "delete_csv_coupon.php"
Full Path: /home/u165092617/domains/tadzz.com/public_html/forms/delete_csv_coupon.php
File size: 447 bytes
MIME-type: text/x-php
Charset: utf-8
<?php session_start();
require_once("../config/config.php");
//require_once("../config/commonsetting.php");
$myformId=SESS_MASTER;
$myIp= ipCheck() ;
$dateceated=date("Y-m-d G:i:s");
$createdby='0';
$user_id=$_SESSION[ADD_TAG.'_UserId_vendor'];
$olga="DELETE FROM coupon WHERE created_by='$user_id' AND created_type='vendor'";
$stmts = $conn->prepare($olga);
$stmts->execute();
header("location:../merchant-tab/".$user_id);
?>