repo stringlengths 7 63 | file_url stringlengths 81 284 | file_path stringlengths 5 200 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 15:02:33 2026-01-05 05:24:06 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/deliveryBoy/issue.php | deliveryBoy/issue.php | <?php
require("require/top.php");
$did = $_SESSION['DELIVERY_ID'];
$res = mysqli_query($con, "select orders.o_id,orders.id,order_time.added_on from orders,order_time where orders.delivered_by='$did' and order_time.oid=orders.id and order_time.o_status=orders.order_status and orders.order_status='7'");
?>
<div class="p... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/deliveryBoy/undelivered.php | deliveryBoy/undelivered.php | <?php
require("require/top.php");
$did = $_SESSION['DELIVERY_ID'];
$res = mysqli_query($con, "select orders.o_id,orders.id,order_time.added_on from orders,order_time where orders.delivered_by='$did' and order_time.oid=orders.id and order_time.o_status=orders.order_status and orders.order_status='6'");
?>
<div class="p... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/deliveryBoy/delivered.php | deliveryBoy/delivered.php | <?php
require("require/top.php");
$did = $_SESSION['DELIVERY_ID'];
$res = mysqli_query($con, "select orders.o_id,orders.id,order_time.added_on from orders,order_time where orders.delivered_by='$did' and order_time.oid=orders.id and order_time.o_status=orders.order_status and orders.order_status='5'");
?>
<div class="p... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/deliveryBoy/delivery_confirmation.php | deliveryBoy/delivery_confirmation.php | <?php
require("require/top.php");
$did = $_SESSION['DELIVERY_ID'];
$res = mysqli_query($con, "select cnfrm_delivery.od_id,orders.o_id,orders.id,order_time.added_on from cnfrm_delivery,orders,order_time where cnfrm_delivery.dv_id='$did' and cnfrm_delivery.od_id=orders.id and order_time.oid=orders.id and order_time.o_sta... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/deliveryBoy/outfordelivery.php | deliveryBoy/outfordelivery.php | <?php
require("require/top.php");
$did = $_SESSION['DELIVERY_ID'];
$res = mysqli_query($con, "select ofd.od_id,orders.o_id,orders.id,order_time.added_on from ofd,orders,order_time where ofd.dv_id='$did' and ofd.od_id=orders.id and order_time.oid=orders.id and order_time.o_status=orders.order_status");
?>
<div class="pa... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/deliveryBoy/assets/backend/auth/logout.php | deliveryBoy/assets/backend/auth/logout.php | <?php
require('../../../../utility/utility.php');
$result=array();
unset($_SESSION['DELIVERY_LOGIN']);
unset($_SESSION['DELIVERY_ID']);
$result['status']=1;
echo json_encode($result);
die();
?> | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/deliveryBoy/assets/backend/auth/validate.php | deliveryBoy/assets/backend/auth/validate.php | <?php
require('../../../../utility/utility.php');
$username=get_safe_value($con,$_POST['username']);
$password=get_safe_value($con,$_POST['password']);
$q="select * from delivery_boy where dv_email='$username'";
$q2="select * from delivery_boy where dv_mobile='$username'";
$q3="select * from delivery_boy wh... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/deliveryBoy/assets/backend/delivery/final.php | deliveryBoy/assets/backend/delivery/final.php | <?php
require('../../../../utility/utility.php');
$oid=get_safe_value($con,$_POST['oid']);
$pid=get_safe_value($con,$_POST['pid']);
$qty=get_safe_value($con,$_POST['qty']);
mysqli_query($con,"update order_detail set delivered_qty='$qty' where oid='$oid' and p_id='$pid'");
?> | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/deliveryBoy/assets/backend/delivery/out.php | deliveryBoy/assets/backend/delivery/out.php | <?php
require('../../../../utility/utility.php');
$oid=get_safe_value($con,$_POST['oid']);
$did=$_SESSION['DELIVERY_ID'];
mysqli_query($con,"delete from assigned_orders where od_id='$oid' and dv_id='$did'");
mysqli_query($con,"insert into ofd(od_id,dv_id) values('$oid','$did')");
mysqli_query($con,"update orders set or... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/deliveryBoy/assets/backend/delivery/handover.php | deliveryBoy/assets/backend/delivery/handover.php | <?php
require('../../../../utility/utility.php');
$oid=get_safe_value($con,$_POST['oid']);
$pid=get_safe_value($con,$_POST['pid']);
mysqli_query($con,"update order_detail set rcvd='1' where oid='$oid' and p_id='$pid'");
?> | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/deliveryBoy/assets/backend/delivery/undelivered.php | deliveryBoy/assets/backend/delivery/undelivered.php | <?php
require('../../../../utility/utility.php');
$oid=get_safe_value($con,$_POST['oid']);
$did=$_SESSION['DELIVERY_ID'];
mysqli_query($con,"delete from ofd where od_id='$oid' and dv_id='$did'");
mysqli_query($con,"insert into cnfrm_undelivery(od_id,dv_id) values('$oid','$did')");
mysqli_query($con,"update orders set o... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/deliveryBoy/assets/backend/delivery/delivered.php | deliveryBoy/assets/backend/delivery/delivered.php | <?php
require('../../../../utility/utility.php');
$oid=get_safe_value($con,$_POST['oid']);
$did=$_SESSION['DELIVERY_ID'];
mysqli_query($con,"delete from ofd where od_id='$oid' and dv_id='$did'");
mysqli_query($con,"insert into cnfrm_delivery(od_id,dv_id) values('$oid','$did')");
mysqli_query($con,"update orders set ord... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/deliveryBoy/require/head.php | deliveryBoy/require/head.php | <div class="head">
<div class="ham-name">
<div class="mnu vy" onclick="hide()" id="mn">
<span></span>
<span></span>
<span></span>
</div>
<div class="mnu ty" onclick="op_n()" id="mn">
<span></span>
<span><... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/deliveryBoy/require/top.php | deliveryBoy/require/top.php | <?php
require("../utility/utility.php");
authorise_delivery($con);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<l... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/deliveryBoy/require/foot.php | deliveryBoy/require/foot.php | </div>
</section>
<script src="assets/js/script.js"></script>
</body>
</html> | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/deliveryBoy/require/nav.php | deliveryBoy/require/nav.php | <div class="left-part" id="lft">
<div class="logo">
<a href="javascript:void(0)">
<img src="../assets/images/logo.png" alt="logo" />
</a>
<svg viewBox="0 0 339.4 75.201" xmlns="http://www.w3.org/2000/svg">
<g
id="svgGroup"
stroke-... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/dv_confirm.php | Admin/dv_confirm.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.html"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="order.html">Orders</a>
</div>
<div class="rowbtn">
<div class="b">
<input ... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/adduser.php | Admin/adduser.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="adduser.php">Add User </a>
</div>
<div class="catbox-row">
<div class="catboxp">
... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/ofd.php | Admin/ofd.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.html"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="order.html">Orders</a>
</div>
<div class="rowbtn">
<div class="b">
<input ... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/nonsellerapprove.php | Admin/nonsellerapprove.php | <?php
require('require/top.php');
$z = 0;
$o = 0;
$q = "select * from sellers where isapp='$z' and is_cp='$o'";
$r = mysqli_query($con, $q);
while ($g = mysqli_fetch_assoc($r)) {
$ids = $g['id'];
mysqli_query($con, "update sellers set is_new='0' where id='$ids'");
}
?>
<div class="wrwr">
<div class="path" ... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/locationpin.php | Admin/locationpin.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="locationpin.php">Add Pincode</a>
</div>
<div class="rowbtn">
<div class="b" style="display:flex;f... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/deliveryboy.php | Admin/deliveryboy.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="seller.php">Sellers</a>
</div>
<div class="rowbtn">
<div class="b">
<input ... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/myorders.php | Admin/myorders.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.html"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="order.html">Orders</a>
</div>
<div class="rowbtn">
<div class="b">
<input ... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/Settelment.php | Admin/Settelment.php | <?php require('require/top.php'); ?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="allorder.php">Orders</a>
<span>/</span>
<a href="Settelment.php">Settelment</a>
</d... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/exclude.php | Admin/exclude.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="exclude.php">Exclude Pin</a>
</div>
<div class="rowbtn">
<div class="b" style="display:flex;flex-... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/setelmentpending.php | Admin/setelmentpending.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.html"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="order.html">Orders</a>
</div>
<div class="rowbtn">
<div class="b">
<input ... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/view_seller_wallet_history.php | Admin/view_seller_wallet_history.php | <?php
require('require/top.php');
$id = $_GET['sid'];
$q = "select * from sellers where id='$id'";
$r = mysqli_query($con, $q);
$row = mysqli_fetch_assoc($r);
$q1 = "select * from seller_wallet where seller_id='$id'";
$r1 = mysqli_query($con, $q1);
?>
<div class="wrwr">
<div class="path" id="path">
<a href=... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/showOrderDetail__.php | Admin/showOrderDetail__.php | <?php
require('require/top.php');
$oid = $_GET['id'];
$allSeller = array();
$sellerInfo = array();
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="showOrderDetail.php?id=<?php echo $_GE... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/seller.php | Admin/seller.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="seller.php">Sellers</a>
</div>
<div class="rowbtn">
<div class="b">
<input ... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/addDeliveryBoy.php | Admin/addDeliveryBoy.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="addseller.php">Add Deliveryboy </a>
</div>
<div class="catbox-row">
<div class="catboxp... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/showOrderDetail_.php | Admin/showOrderDetail_.php | <?php
require('require/top.php');
$oid = $_GET['id'];
$allSeller = array();
$sellerInfo = array();
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="showOrderDetail.php?id=<?php echo $_GE... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/incompleteorder.php | Admin/incompleteorder.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="incomplete.php">Incomplete Orders</a>
</div>
<div class="rowbtn">
<div class="b">
... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/showOrderDetail-undelivered.php | Admin/showOrderDetail-undelivered.php | <?php
require('require/top.php');
$oid = $_GET['id'];
$rw = mysqli_fetch_assoc(mysqli_query($con, "select * from orders where o_id='$oid'"));
$qu = "select order_detail.*,orders.payment_type,product.img1,product.fa,product.name,commition.commission from order_detail,orders,product,commition where order_detail.order_id=... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/business.php | Admin/business.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="business.php">Business</a>
</div>
<div class="rowbtn">
<div class="b" style="display:flex;flex-di... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/addseller.php | Admin/addseller.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="addseller.php">Add Seller </a>
</div>
<div class="catbox-row">
<div class="catboxp">
... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/sellerapprove.php | Admin/sellerapprove.php | <?php
require('require/top.php');
$z = 0;
$o = 1;
$q = "select * from sellers where isapp='$z' and is_cp='$o'";
$r = mysqli_query($con, $q);
while ($g = mysqli_fetch_assoc($r)) {
$ids = $g['id'];
mysqli_query($con, "update sellers set is_new='0' where id='$ids'");
}
?>
<div class="wrwr">
<div class="path" ... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/sub-cat.php | Admin/sub-cat.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="categories.php">Categories</a><span> /</span>
<a href="sub-cat.php">Sub-Categories</a>
</div>
<di... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/loacationci.php | Admin/loacationci.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="loacationci.php">Add City</a>
</div>
<div class="rowbtn">
<div class="b" style="display:flex;flex... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/orderassigned.php | Admin/orderassigned.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.html"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="order.html">Orders</a>
</div>
<div class="rowbtn">
<div class="b">
<input ... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/subfilters.php | Admin/subfilters.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="subfilters.php">Sub-Filter</a>
</div>
<div class="rowbtn">
<div class="b" style="display:flex;... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/product.php | Admin/product.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.html"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="product.html">Product</a>
</div>
<div class="rowbtn">
<div class="b">
<inp... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/udv_confirm.php | Admin/udv_confirm.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.html"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="order.html">Orders</a>
</div>
<div class="rowbtn">
<div class="b">
<input ... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/seller_detail.php | Admin/seller_detail.php | <?php
require('require/top.php');
$id = $_GET['sid'];
$q = "select sellers.*,country.cntry_name,state.state_name,city.city_name,pin.pincode,business_type.type from sellers,country,state,city,pin,business_type where sellers.id='$id' and sellers.country=country.id and sellers.state=state.id and sellers.city=city.id and s... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/order.php | Admin/order.php | <?php
require('require/top.php');
$q = "select * from orders where isnew='1'";
$r = mysqli_query($con, $q);
while ($g = mysqli_fetch_assoc($r)) {
$ids = $g['id'];
mysqli_query($con, "update orders set isnew='0' where id='$ids'");
}
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.ht... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/product_management.php | Admin/product_management.php | <?php
require('require/top.php');
$h_t = get_safe_value($con, $_GET['b']);
if (isset($_GET['idp'])) {
$productid = get_safe_value($con, $_GET['idp']);
}
$name = '';
$category = '';
$subcategory = '';
$qty = '';
$price = '';
$sellprice = '';
$tax = '';
$fa = '0.00';
$sku = '';
$sd = '';
$dc = '';
$bs = '';
$filter =... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/showOrderDetail.php | Admin/showOrderDetail.php | <?php
require('require/top.php');
$oid = $_GET['id'];
$qu = "select order_detail.*,product.img1,product.fa,product.product_name from order_detail,product where order_detail.oid='$oid' and product.id=order_detail.p_id";
$rs = mysqli_query($con, $qu);
$t = array();
while ($rt = mysqli_fetch_assoc($rs)) {
$t[] = $rt;
... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/witdraw.php | Admin/witdraw.php | <?php
require('require/top.php');
$query = "select witdraw_req.*,sellers.f_name from witdraw_req,sellers where sellers.id=witdraw_req.s_id";
$res = mysqli_query($con, $query);
$h = mysqli_query($con, "select * from witdraw_req where isnew='1'");
while ($w = mysqli_fetch_assoc($h)) {
$jid = $w['id'];
mysqli_quer... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/loacationc.php | Admin/loacationc.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="loacationc.php">Add Country</a>
</div>
<div class="rowbtn">
<div class="b" style="display:flex;fl... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/login.php | Admin/login.php | <?php
require('../utility/utility.php');
if (isset($_SESSION['IS_LOGIN_ADMIN'])) {
redirect('index.php');
} else {
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login</title>
<link rel="stylesheet" href... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/index.php | Admin/index.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path">
<a href=""><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
</div>
<div class="row">
<div class="card" style="border:1px solid #e1e4e8;border-radius:0 5px 5px 0">
<div c... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/loacations.php | Admin/loacations.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="loacations.php">Add State</a>
</div>
<div class="rowbtn">
<div class="b" style="display:flex;flex... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/ad_dv_time.php | Admin/ad_dv_time.php | <?php
require('require/top.php');
if (isset($_POST['submit'])) {
$id = get_safe_value($con, $_POST['sfield']);
$to = get_safe_value($con, $_POST['sfield2']);
if ($id == '' && $to == '') {
?>
<script>
alert("Enter value")
</script>
<?php
} else {
mysqli_query($con, "I... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/earning.php | Admin/earning.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="earning.php">Earnngs</a>
</div>
<div class="row">
<div class="card">
<div class="logo... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/manual_update.php | Admin/manual_update.php | <?php
require('require/top.php');
$id = $_GET['sid'];
$o = mysqli_fetch_assoc(mysqli_query($con, "select * from seller_wallet where seller_id='$id'"));
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/issue.php | Admin/issue.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.html"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="order.html">Orders</a>
</div>
<div class="rowbtn">
<div class="b">
<input ... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/view_seller_approve.php | Admin/view_seller_approve.php | <?php
require('require/top.php');
$id = $_GET['sid'];
$q = "select sellers.*,country.cntry_name,state.state_name,city.city_name,pin.pincode,business_type.type from sellers,country,state,city,pin,business_type where sellers.id='$id' and sellers.country=country.id and sellers.state=state.id and sellers.city=city.id and s... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/Setteled.php | Admin/Setteled.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.html"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="order.html">Orders</a>
</div>
<div class="rowbtn">
<div class="b">
<input ... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/settelmentDetail.php | Admin/settelmentDetail.php | <?php
require('require/top.php');
$oid = $_GET['id'];
$rw = mysqli_fetch_assoc(mysqli_query($con, "select * from orders where o_id='$oid'"));
$qu = "select order_detail.*,product.img1,product.fa,product.name,commition.commission from order_detail,product,commition where order_detail.order_id='$oid' and product.id=order... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/txn.php | Admin/txn.php | <?php
require('require/top.php');
$id = $_GET['sid'];
$o = mysqli_fetch_assoc(mysqli_query($con, "select * from witdraw_req where s_id='$id'"));
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/productapprove.php | Admin/productapprove.php | <?php
require('require/top.php');
$q = "select * from product where isappp='0'";
$r = mysqli_query($con, $q);
while ($g = mysqli_fetch_assoc($r)) {
$ids = $g['id'];
mysqli_query($con, "update product set isnew='0' where id='$ids'");
}
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/undelivered.php | Admin/undelivered.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.html"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="order.html">Orders</a>
</div>
<div class="rowbtn">
<div class="b">
<input ... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/user.php | Admin/user.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="user.php">Users</a>
</div>
<div class="rowbtn">
<div class="b">
<input type... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/delivered.php | Admin/delivered.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path" id="path">
<a href="index.html"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="order.html">Orders</a>
</div>
<div class="rowbtn">
<div class="b">
<input ... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/filters.php | Admin/filters.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="filters.php">Filter</a>
</div>
<div class="rowbtn">
<div class="b" style="display:flex;flex-direc... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/categories.php | Admin/categories.php | <?php
require('require/top.php');
?>
<div class="wrwr">
<div class="path">
<a href="index.php"><i class="fa fa-home" aria-hidden="true"></i> Dashboard</a>
<span>/</span>
<a href="categories.php">Categories</a>
</div>
<div class="rowbtn">
<div class="b">
<button c... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/subcat/addsubcat.php | Admin/assets/backend/subcat/addsubcat.php | <?php
require('../../../../utility/utility.php');
$value=get_safe_value($con,$_POST['name']);
$pcat=get_safe_value($con,$_POST['pcat']);
$sale=get_safe_value($con,$_POST['sale']);
$status=1;
$cq="select * from subcategories where subcat='$value'";
$cr=mysqli_query($con,$cq);
$cro=mysqli_num_rows($cr);
$result=array();... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/subcat/updatesubcatlist.php | Admin/assets/backend/subcat/updatesubcatlist.php | <?php
require('../../../../utility/utility.php');
$query="select * from subcategories order by id desc";
$res=mysqli_query($con,$query);
$i=1;
$template='';
while($row=mysqli_fetch_assoc($res)){
$st='';
$cb='';
$idd=$row['id'];
$scat=$row['id'];
$query2="select * from commission where scat_id='$scat'";
$res2=mysqli_que... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/subcat/subcat_acdc.php | Admin/assets/backend/subcat/subcat_acdc.php | <?php
require('../../../../utility/utility.php');
$id=get_safe_value($con,$_POST['id']);
$status=get_safe_value($con,$_POST['status']);
$q="update subcategories set status='$status' where id='$id'";
if(mysqli_query($con,$q)){
echo 1;
}else{
echo 0;
}
?> | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/subcat/editsubcats.php | Admin/assets/backend/subcat/editsubcats.php | <?php
require('../../../../utility/utility.php');
$id=get_safe_value($con,$_POST['id']);
$q="select * from subcategories where id='$id'";
$res=mysqli_query($con,$q);
$row=mysqli_fetch_assoc($res);
$name=$row['subcat'];
$pact=$row['cat_id'];
$scat=$row['id'];
$query2="select * from co... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/subcat/get_subcat.php | Admin/assets/backend/subcat/get_subcat.php | <?php
require('../../../../utility/utility.php');
$pcat=get_safe_value($con,$_POST['pcat']);
$template='';
$q="select * from subcategories where cat_id='$pcat'";
$res=mysqli_query($con,$q);
if(mysqli_num_rows($res)==0){
$template="<option>No Data found</option>";
}else{
$template="<option value='#'>Select Sub C... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/subcat/updatesubcat.php | Admin/assets/backend/subcat/updatesubcat.php | <?php
require('../../../../utility/utility.php');
$id=get_safe_value($con,$_POST['id']);
$name=get_safe_value($con,$_POST['name']);
$pcat=get_safe_value($con,$_POST['pcat']);
$sale=get_safe_value($con,$_POST['sale']);
$cq="select * from subcategories where subcat='$name' and cat_id='$pcat'";
... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/subcat/subcat_delete.php | Admin/assets/backend/subcat/subcat_delete.php | <?php
require('../../../../utility/utility.php');
$id=get_safe_value($con,$_POST['id']);
$q="delete from subcategories where id='$id'";
mysqli_query($con,$q);
mysqli_query($con,"delete from commission where scat_id='$id'");
?> | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/subcat/show-addsubcat.php | Admin/assets/backend/subcat/show-addsubcat.php | <?php
require('../../../../utility/utility.php');
$template="
<div class='row'>
<h2>Add Sub Category</h2>
</div>
<div class='row ndr'>
<select name='catnameadd' id='addsubcat'>
<option value='#'>Select Parent Category</option>";
$query="select * from categories order by id d... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/auth/logout.php | Admin/assets/backend/auth/logout.php | <?php
require('../../../../utility/utility.php');
unset($_SESSION['IS_LOGIN_ADMIN']);
unset($_SESSION['PVL_ADMIN']);
unset($_SESSION['ADMIN_ID']);
echo 1;
die();
?> | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/auth/validate.php | Admin/assets/backend/auth/validate.php | <?php
require('../../../../utility/utility.php');
$username=get_safe_value($con,$_POST['un']);
$password=get_safe_value($con,$_POST['up']);
$q="select * from admin where username='$username'";
$rs=mysqli_query($con,$q);
$nor=mysqli_num_rows($rs);
if($nor==0){
echo 3;
}else{
... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/filter/deletefilter.php | Admin/assets/backend/filter/deletefilter.php | <?php
require('../../../../utility/utility.php');
$id=get_safe_value($con,$_POST['id']);
$q="select * from filter where id='$id'";
$r=mysqli_query($con,$q);
$T=mysqli_fetch_assoc($r);
$name=$T['name'];
$qr="select * from subfilter where p_filter='$name'";
$ra=mysqli_query($con,$qr);
while($rw=mysqli_fetch_ass... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/filter/add_product_sub_filter.php | Admin/assets/backend/filter/add_product_sub_filter.php | <?php
require('../../../../utility/utility.php');
$value=json_decode($_POST['json']);
$productId=$value[count($value)-1];
for($i=0;$i<count($value)-1;$i++){
$query='insert into product_subfilters (pid,subfilter) values("'.$productId.'","'.$value[$i].'")';
mysqli_query($con,$query);
}
?> | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/filter/add_product_sub_filter_update.php | Admin/assets/backend/filter/add_product_sub_filter_update.php | <?php
require('../../../../utility/utility.php');
$value=json_decode($_POST['json']);
$productId=$value[count($value)-1];
mysqli_query($con,"delete from product_subfilters where pid='$productId'");
for($i=0;$i<count($value)-1;$i++){
$query='insert into product_subfilters (pid,subfilter) values("'.$productId.'","'.$... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/filter/updatefilterlist.php | Admin/assets/backend/filter/updatefilterlist.php | <?php
require('../../../../utility/utility.php');
$template='<div class="b" style="display:flex;flex-direction:column;padding:3rem 2rem">
<div class="row" style="height:3rem; display:flex;justify-content:space-between;">
<div class="block" style="width:15rem; font-weight: 600; color:#40464d; font-size:1.6rem; displ... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/filter/add_product_filter_update.php | Admin/assets/backend/filter/add_product_filter_update.php | <?php
require('../../../../utility/utility.php');
$value=json_decode($_POST['json']);
$productId=$value[count($value)-1];
mysqli_query($con,"delete from product_filters where pid='$productId'");
for($i=0;$i<count($value)-1;$i++){
$query='insert into product_filters (pid,filter) values("'.$productId.'","'.$value[$i]... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/filter/add_product_filter.php | Admin/assets/backend/filter/add_product_filter.php | <?php
require('../../../../utility/utility.php');
$value=json_decode($_POST['json']);
$productId=$value[count($value)-1];
for($i=0;$i<count($value)-1;$i++){
$query='insert into product_filters (pid,filter) values("'.$productId.'","'.$value[$i].'")';
mysqli_query($con,$query);
}
?> | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/filter/addfilter.php | Admin/assets/backend/filter/addfilter.php | <?php
require('../../../../utility/utility.php');
$value=get_safe_value($con,$_POST['filter']);
$subcat=get_safe_value($con,$_POST['subcat']);
$cq="select * from filter where filter='$value'";
$cr=mysqli_query($con,$cq);
$cro=mysqli_num_rows($cr);
if($cro==0){
$qyery="insert into filter(subcat_id,filter) values('$s... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/filter/get_subfilter.php | Admin/assets/backend/filter/get_subfilter.php | <?php
require('../../../../utility/utility.php');
$pcat=get_safe_value($con,$_POST['pcat']);
$template='';
$q="select * from filter where subcat_id='$pcat'";
$res=mysqli_query($con,$q);
if(mysqli_num_rows($res)==0){
$template="<option>No Data found</option>";
}else{
while($row=mysqli_fetch_assoc($res)){
... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/category/show-addcat.php | Admin/assets/backend/category/show-addcat.php | <?php
require('../../../../utility/utility.php');
$template="
<div class='row'>
<h2>Add Category</h2>
</div>
<div class='row ndr'>
<br />
<input type='text' id='updtedcat' placeholder='Enter category name'/>
<button class='adcatbtn' onclick='addnewcat(... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/category/editcat.php | Admin/assets/backend/category/editcat.php | <?php
require('../../../../utility/utility.php');
$id=get_safe_value($con,$_POST['id']);
$q="select * from categories where id='$id'";
$res=mysqli_query($con,$q);
$row=mysqli_fetch_assoc($res);
$name=$row['category'];
$template="
<div class='row'>
<h2>Edit Category</h2>
... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/category/cat_delete.php | Admin/assets/backend/category/cat_delete.php | <?php
require('../../../../utility/utility.php');
$id=get_safe_value($con,$_POST['id']);
$q="delete from categories where id='$id'";
$res=mysqli_query($con,"select * from subcategories where cat_id='$id'");
while($r=mysqli_fetch_assoc($res)){
$sid=$r['id'];
mysqli_query($con,"delete from commission where scat_i... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/category/cat_acdc.php | Admin/assets/backend/category/cat_acdc.php | <?php
require('../../../../utility/utility.php');
$id=get_safe_value($con,$_POST['id']);
$status=get_safe_value($con,$_POST['status']);
$q="update categories set status='$status' where id='$id'";
if(mysqli_query($con,$q)){
echo 1;
}else{
echo 0;
}
?> | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/category/catlist.php | Admin/assets/backend/category/catlist.php | <?php
require('../../../../utility/utility.php');
$query="select * from categories order by id desc";
$res=mysqli_query($con,$query);
$i=1;
$template='';
while($row=mysqli_fetch_assoc($res)){
$st='';
$cb='';
$id=$row['id'];
... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/category/updatecat.php | Admin/assets/backend/category/updatecat.php | <?php
require('../../../../utility/utility.php');
$id=get_safe_value($con,$_POST['id']);
$name=get_safe_value($con,$_POST['name']);
$cq="select * from categories where category='$name'";
$cr=mysqli_query($con,$cq);
$cro=mysqli_num_rows($cr);
if($cro==0){
$q="update categories set cat... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/category/addcat.php | Admin/assets/backend/category/addcat.php | <?php
require('../../../../utility/utility.php');
$value=get_safe_value($con,$_POST['name']);
$status=1;
$cq="select * from categories where category='$value'";
$cr=mysqli_query($con,$cq);
$cro=mysqli_num_rows($cr);
if($cro==0){
$qyery="insert into categories(category,status) values('$value','$status')";
if(mys... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/product/updatefimage.php | Admin/assets/backend/product/updatefimage.php | <?php
require('../../../../utility/utility.php');
if($_FILES['file']['type']!='' && $_FILES['file']['type']!='image/jpeg' && $_FILES['file']['type']!='image/jpg'&& $_FILES['file']['type']!='image/png'){
$msg="Format of Fourth Image Is Not supported";
echo $msg;
}else{
$filename = rand(1111111,9999999).$_F... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/product/pt_acdc.php | Admin/assets/backend/product/pt_acdc.php | <?php
require('../../../../utility/utility.php');
$id=get_safe_value($con,$_POST['id']);
$status=get_safe_value($con,$_POST['status']);
$q="update product set status='$status' where id='$id'";
if(mysqli_query($con,$q)){
echo 1;
}else{
echo 0;
}
?> | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/product/updateproductlist.php | Admin/assets/backend/product/updateproductlist.php | <?php
require('../../../../utility/utility.php');
$query="select * from product order by id desc";
$res=mysqli_query($con,$query);
$i=1;
$template='';
while($row=mysqli_fetch_assoc($res)){
$st='';
$cb='';
$img1=$row['img1'];
$name=$row['name'];
$id=$row['id'];
if($row['status']==1){
$st="Active";
$cb="<button class='de... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/product/add_bs.php | Admin/assets/backend/product/add_bs.php | <?php
require('../../../../utility/utility.php');
$id=get_safe_value($con,$_POST['id']);
$bs=get_safe_value($con,$_POST['val']);
mysqli_query($con,"update product set bs='$bs' where id='$id'");
?> | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/product/addfimage.php | Admin/assets/backend/product/addfimage.php | <?php
require('../../../../utility/utility.php');
if($_FILES['file']['type']!='' && $_FILES['file']['type']!='image/jpeg' && $_FILES['file']['type']!='image/jpg'&& $_FILES['file']['type']!='image/png'){
$msg="Format of Fourth Image Is Not supported";
echo $msg;
}else{
$filename = rand(1111111,9999999).$_F... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/product/addproduct.php | Admin/assets/backend/product/addproduct.php | <?php
require('../../../../utility/utility.php');
$name=get_safe_value($con,$_POST['name']);
$category=get_safe_value($con,$_POST['category']);
$subcategory=get_safe_value($con,$_POST['subcat']);
$img1=get_safe_value($con,$_POST['img1']);
$img2=get_safe_value($con,$_POST['img2']);
$img3=get_safe_value($con,$_POS... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/product/updatetimage.php | Admin/assets/backend/product/updatetimage.php | <?php
require('../../../../utility/utility.php');
if($_FILES['file']['type']!='' && $_FILES['file']['type']!='image/jpeg' && $_FILES['file']['type']!='image/jpg'&& $_FILES['file']['type']!='image/png'){
$msg="Format of Third Image Is Not supported";
echo $msg;
}else{
$filename = rand(1111111,9999999).$_FI... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/product/updatesimage.php | Admin/assets/backend/product/updatesimage.php | <?php
require('../../../../utility/utility.php');
if($_FILES['file']['type']!='' && $_FILES['file']['type']!='image/jpeg' && $_FILES['file']['type']!='image/jpg'&& $_FILES['file']['type']!='image/png'){
$msg="Format of Second Image Is Not supported";
echo $msg;
}else{
$filename = rand(1111111,9999999).$_F... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/product/product_delete.php | Admin/assets/backend/product/product_delete.php | <?php
require('../../../../utility/utility.php');
$id=get_safe_value($con,$_POST['id']);
$query="select * from product where id='$id'";
$res=mysqli_query($con,$query);
$row=mysqli_fetch_assoc($res);
$img1=$row['img1'];
$img2=$row['img2'];
$img3=$row['img3'];
$img4=$row['img4'];
$link1="../../../../media/product/$img1";... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
detronetdip/E-commerce | https://github.com/detronetdip/E-commerce/blob/a9368863c2fb493bb9f14582bcf6410377e06521/Admin/assets/backend/product/updateproduct.php | Admin/assets/backend/product/updateproduct.php | <?php
require('../../../../utility/utility.php');
$name=get_safe_value($con,$_POST['name']);
$category=get_safe_value($con,$_POST['category']);
$subcategory=get_safe_value($con,$_POST['subcat']);
$img1=get_safe_value($con,$_POST['img1']);
$img2=get_safe_value($con,$_POST['img2']);
$img3=get_safe_value($con,$_POS... | php | MIT | a9368863c2fb493bb9f14582bcf6410377e06521 | 2026-01-05T05:22:32.990752Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.