ah, gracias por la info.
hice una funcion para iniciar sesión, aunque creo que es más práctico lo que dices de agregar el exit, y también un error_reporting(0).
hice una funcion para iniciar sesión, aunque creo que es más práctico lo que dices de agregar el exit, y también un error_reporting(0).
Código (php) [Seleccionar]
function iniciar_sesion()
{
if (!is_string($_COOKIE[session_name()])
|| preg_match(
'/^[a-zA-Z0-9\,\-]{32}$/'
, $_COOKIE[session_name()]
) != 1 ) {
unset($_COOKIE[session_name()]);
}
session_start();
}