blob: 420f47a4949f108dae68b504a6e0a17cbb38a301 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/*______________________________________________________________________
Redirecciona a la página de error
Parametros:
- Literal del error
_______________________________________________________________________*/
function RedireccionaError($herror){
$urlerror=urlencode($herror);
$wurl="../seguridad/logerror.php?herror=".$urlerror;
Header('Location: '.$wurl);
}
?>
|