include("control/modulos/funciones.php"); include("control/modulos/configuracion.php"); //Buscamos la imagen de la revista $QueryRev = "SELECT Imagen FROM Revistas ORDER BY IdRevista DESC LIMIT 0, 1"; //Buscamos la Descripción de la revista $QueryDesc = "SELECT Descripcion FROM Revistas ORDER BY IdRevista DESC LIMIT 0, 1"; //Obtenemos los datos del registro $txtEmail = $_POST ["txtEMail"]; $txtPasswd = $_POST ["txtPasswd"]; $btnIngresar = $_POST ["btnIngresar"]; //Verificamos que se registren los datos completos if (!$txtEmail and !$txtPasswd and $btnIngresar) { HtmlAlert ("Debe escribir el correo y la Contraseña"); } if ($txtEmail and !$txtPasswd and $btnIngresar) { HtmlAlert ("Debe escribir la Contraseña"); } if (!$txtEmail and $txtPasswd and $btnIngresar) { HtmlAlert ("Debe escribir el correo"); } if ($txtEmail and $txtPasswd and $btnIngresar) { //Verificamos si la información existe en la base de datos $Query = "SELECT Email FROM Invitados WHERE Email = '$txtEmail'"; $EmailExiste = QTxt ($Query); if (!$EmailExiste) { HtmlAlert ("El usuario no está registrado"); } else { $Query = "SELECT Passwd FROM Invitados WHERE Email = '$txtEmail' AND Passwd = '$txtPasswd'"; $PasswdOK = QTxt ($Query); if (!$PasswdOK) { HtmlAlert ("La contraseña del usuario es incorrecta, verifique"); } else { $MostrarVideo = 1; } } } ?>
Revista Empresarial
|