sistema de desayuno 2019 actualizado

This commit is contained in:
2019-06-20 18:00:41 -05:00
parent a855c50faf
commit c26ee4eef3
385 changed files with 48959 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
include("conexion.php");
$con = Conectarse();
$email = utf8_decode(trim($_POST['email']));
$insert_registro = "call st_trae_correo('$email')";
$result = mysqli_query($con, $insert_registro);
$id = mysqli_fetch_row($result);
//echo $insert_registro;return;
if ($id[0] == 1) {
echo $email;
} else {
echo '';
}