Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 13, 2018 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/66c7e2a913a8619ab0f70e45aaf04086 to your computer and use it in GitHub Desktop.
Save parzibyte/66c7e2a913a8619ab0f70e45aaf04086 to your computer and use it in GitHub Desktop.
<?php
if(!isset($_GET["indice"])) return;
$indice = $_GET["indice"];
session_start();
array_splice($_SESSION["carrito"], $indice, 1);
header("Location: ./vender.php?status=3");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment