blob: ded595ad0de6166462b352c777ee4398c5841f46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?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);
}
|