Last active
August 29, 2015 13:56
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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