<?php | |
session_start(); | |
unset($_SESSION["carrito"]); | |
$_SESSION["carrito"] = []; | |
header("Location: ./vender.php?status=2"); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
<?php | |
session_start(); | |
unset($_SESSION["carrito"]); | |
$_SESSION["carrito"] = []; | |
header("Location: ./vender.php?status=2"); | |
?> |