Advertisement
correJuliocorre

kevin2

Aug 10th, 2011
418
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. <?php
  2.     require('gestor/GestorSesion.php');
  3.     require('layout/header.php');
  4.     require('gestor/GestorUsuario.php');
  5.    
  6.     $g = new GestorUsuario();
  7.        
  8.    
  9.     $id_usuario = isset($_POST['delete']) ? $_POST['delete'] : array();
  10.     $g->eliminarUsuario($id_usuario);
  11.            
  12.     header('Location: perfilUsuario.php');
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement