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
+12
View File
@@ -0,0 +1,12 @@
<?php
include("conexion.php");
$dbo=conexion_pdo();
//$query="st_trae_responsable_correo(:email)";
$query="select * from solicitud where responsable_correo=:email";
$resultado=$dbo->prepare($query);
$resultado->execute(array(':email'=>$_POST['email']));
if ($resultado->rowCount() == 0)
echo "0";
else
echo "1";
$dbo=null;