Skip to content

Instantly share code, notes, and snippets.

@nicolapiz
Last active August 29, 2015 13:56
Show Gist options
  • Save nicolapiz/9310702 to your computer and use it in GitHub Desktop.
Save nicolapiz/9310702 to your computer and use it in GitHub Desktop.
php que sirve para cerrar la sesion del ejercicio 5. al final nos redirecciona al Ej5.php
<?php
session_start();
session_regenerate_id(true);
session_destroy();
header("location:Ej5.php");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment