public function grabar($titulo, $cx, $cy) { $con = conex::con(); $titulo = mysql_real_escape_string($titulo); $cx = mysql_real_escape_string($cx); $cy = mysql_real_escape_string($cy); $q = "insert into puntos (Titulo, cx, cy)" . "values ('" . addslashes($titulo) . "','" . addslashes($cx) . "','" . addslashes($cy) . "')"; $rpta = mysql_query($q, $con); mysql_close($con); if ($rpta == 1) { return TRUE; } else { return FALSE; } }
<?php require '../conex.php'; /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ $conexx = new conex(); //abre conexion a la BD $fecha = date("Y-m-d"); //obtiene la hora del servidor $sql = ""; //si es tipo socio es opcion 1 //tipo usuaio opcion 2 if ($_POST['tipoUsuario'] == '2') { try { $sql = $conexx->getConex()->prepare("INSERT INTO socios VALUES (:CedulaS, :ExpedidaS, :NombreS, :Apellido, :Apellido2, :Edad, :Telefono, :Fecha, :Clave)"); $sql->execute(array('CedulaS' => $_POST['cedulaS'], 'ExpedidaS' => $_POST['expedidaS'], 'NombreS' => $_POST['nombreS'], 'Apellido' => $_POST['apellidoS'], 'Apellido2' => $_POST['apellido2S'], 'Edad' => $_POST['edadS'], 'Telefono' => $_POST['telefonoS'], 'Fecha' => $fecha, 'Clave' => $_POST['claveS'])); } catch (Exception $e) { echo "<script type='text/javascript'>" . "alert('No se ingresaron los datos del socio, contacte al administrador del sistema.');" . "window.location='registrarUsuario.php'; " . "</script>"; } } else { try { $sql = $conexx->getConex()->prepare("INSERT INTO solicitante VALUES (:Cedula, :CedulaDe, :Nombre, :Apellido, :Apellido2, :Edad, " . ":EstadoCivil, :PersonaCargo, :Direccion, :Telefono, :Profesion, :EmpresaTrabaja, :Cargo, :Tiempo, :Actividad, :DireccionOficina, :TelefonoOficina)"); $sql->execute(array('Cedula' => $_POST['cedula'], 'CedulaDe' => $_POST['expedida'], 'Nombre' => $_POST['nombre'], 'Apellido' => $_POST['apellido'], 'Apellido2' => $_POST['apellido2'], 'Edad' => $_POST['edad'], 'EstadoCivil' => $_POST['estadoCivil'], 'PersonaCargo' => $_POST['hijos'], 'Direccion' => $_POST['direccion'], 'Telefono' => $_POST['telefono'], 'Profesion' => $_POST['profesion'], 'EmpresaTrabaja' => $_POST['empresaTrabaja'], 'Cargo' => $_POST['cargo'], 'Tiempo' => $_POST['antiguedad'], 'Actividad' => $_POST['actividad'], 'DireccionOficina' => $_POST['direccionEmpresa'], 'TelefonoOficina' => $_POST['telefonoEmpresa'])); } catch (Exception $e) { echo "<script type='text/javascript'>" . "alert('No se ingresaron los datos del Solicitante, contacte al administrador del sistema.');" . "window.location='registrarUsuario.php'; " . "</script>"; } } $conexx->cerrarConex();
<?php require '../../conex.php'; /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ try { $conex = new conex(); $sql = $conex->getConex()->prepare("SELECT socios.cedulaSocio FROM socios WHERE cedulaSocio = :Cedula"); $sql->execute(array('Cedula' => $_POST['cedula'])); $result = $sql->fetch(); if (!$result) { echo "<script> " . "alert('Ocurrio un error durante el aporte, contacte al administrador.'); " . "window.location='BuscarSocioPrincipal.php';" . "</script>"; } else { try { $sql = ''; $sql = $conex->getConex()->prepare("INSERT INTO retiros VALUES(NULL, :CedulaS, :FechaAporte, :Monto, :Observacion, :Procesado, 0000-00-00)"); $sql->execute(array('CedulaS' => $_POST['cedula'], 'FechaAporte' => date('Y-m-d'), 'Monto' => $_POST['valorRetirar'], 'Observacion' => $_POST['observacion'], 'Procesado' => 1)); $conex->cerrarConex(); echo "<script> " . "alert('Retiro realizado.'); " . "window.location='BuscarSocioPrincipal.php';" . "</script>"; } catch (Exception $e) { echo "<script> " . "alert('No se realizo el retiro, contacte el administrador.'); " . "window.location='BuscarSocioPrincipal.php';" . "</script>"; } } } catch (Exception $ex) { echo "<script> " . "No se encontro el usuario'); " . "window.location='BuscarSocioPrincipal.php';" . "</script>"; }
<?php require 'conex.php'; session_start(); $conex = new conex(); //Abre la conexion a la BD $sql = $conex->getConex()->prepare('SELECT * FROM socios WHERE cedulaSocio = :Usuario and clave = :Clave'); $sql->execute(array('Usuario' => $_POST['usuario'], 'Clave' => $_POST['clave'])); $resul = $sql->fetch(PDO::FETCH_ASSOC); $conex->cerrarConex(); //cierra la conexion a la BD //si el usuario existe lo reidirge a la principal //caso contrario la redirige a la pagina de login if (count($resul) > 1) { if (!isset($_SESSION['usuario'])) { $_SESSION['usuario'] = $_POST['usuario']; $_SESSION['clave'] = $_POST['clave']; } header('location: princi.php'); } else { header("location: index.php"); echo '<script language="javascript">alert("Usuario invalido");</script>'; }
<head> <title>Socios</title> <link rel="stylesheet" href="../../css/rigistrarUsuario.css"/> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="stylesheet" href="../../css/main.css" /> <link rel="stylesheet" href="../../css/tabla.css" /> </head> <body> <div id="retiro"> <div id="cuadroBusqueda"> <form id="msformb" action="aportarDB.php" method="post"> <fieldset> <h1>Socio del Fondo</h1> <?php require '../../conex.php'; $conex = new conex(); $sql = $conex->getConex()->prepare('SELECT * FROM socios WHERE :Cedula = cedulaSocio'); $sql->execute(array('Cedula' => $_POST['valorBuscar'])); $resul = $sql->fetch(); if (!$resul) { echo "<script type='text/javascript'>" . "if(confirm('No existe el Socio, Desea registrarlo')){ " . "window.location='../../usuario/registrarUsuario.php'; " . "}else{ window.location='BuscarSocioPrincipal.php' } " . "</script>"; } echo '<label>Nombre: ', $resul['nombre'], ' ', $resul['apellido'], '</label>'; echo '<label>Cedula: ', $resul['cedulaSocio'], '</label>'; $conex->cerrarConex(); ?> <h1>Realizar Retiro</h1> <?php //cedula del cliente que aporta echo "<input name='cedula' value=", $_POST['valorBuscar'], " type='hidden' />"; ?>
<?php require '../../sessionAbierta.php'; require '../../conex.php'; $cone = new conex(); $fecha = date("Y-m-d"); $a = $_POST['cedula']; try { $sql = $cone->getConex()->prepare("INSERT INTO prestamo VALUES (NULL,:Cedula, :TipoPago, :Monto, :Periodo, :Cuotas, :Tasa, :Fecha , :Saldo,0)"); $sql->execute(array('Cedula' => $_POST['cedula'], 'TipoPago' => $_POST['tipoPago'], 'Monto' => $_POST['monto'], 'Periodo' => $_POST['PeriodoPago'], 'Cuotas' => $_POST['cuotas'], 'Tasa' => $_POST['tasa'], 'Fecha' => $fecha, 'Saldo' => $_POST['monto'])); } catch (Exception $e) { echo "No se solicito el credito, Contacte al administrador.<br>"; } echo "<script>" . "alert('Se ingresaron los datos de la solicitud de credito correctamente');" . "window.location='buscarSolicitante.php';" . "</script>"; $cone->cerrarConex();
<?php /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ require '../../conex.php'; $conex = new conex(); //BUSCA EL PRESTAMO QUE SE APROBO foreach ($_POST['check'] as $r) { $sql = $conex->getConex()->prepare("SELECT * FROM prestamo WHERE id = :Id"); $sql->execute(array('Id' => $r)); $resultPrestamo = $sql->fetch(); //GENERA LAS CUOTAS PARA EL PRESTAMO APROBADO SI ES UN PRESTAMO DE CUOTAS FIJAS PERIODICAS if ($resultPrestamo['tipoPago'] == 0) { $divisor = 0; $tasa = 0; $tiempo = 0; $prestamo = 0; $nprestamo = 0; $vmonto = 0; $vfechap = 0; $vsaldo = 0; $dias = 0; // cada cuantos dias se tienen que generar las cuotas switch ($resultPrestamo['periodo']) { case 0: $divisor = 1; $dias = 1; break;
</div> <div class="bottom"> <ul class="icons"> <li><a href="#" class="icon fa-twitter"><span class="label">Twitter</span></a></li> <li><a href="#" class="icon fa-facebook"><span class="label">Facebook</span></a></li> <li><a href="#" class="icon fa-github"><span class="label">Github</span></a></li> <li><a href="#" class="icon fa-dribbble"><span class="label">Dribbble</span></a></li> <li><a href="#" class="icon fa-envelope"><span class="label">Email</span></a></li> </ul> </div> </div> <div id="registro"> <?php require_once '../conex.php'; $conex = new conex(); $resul = ""; if ($_POST['tipoUsuario'] == '1') { $sql = $conex->getConex()->prepare("SELECT * FROM socios WHERE cedulaSocio = :Cedula"); $sql->execute(array('Cedula' => $_POST['valorBuscar'])); $resul = $sql->fetch(PDO::FETCH_ASSOC); if (count($resul) > 1) { $cedulaS = $resul['cedulaSocio']; $expedidaS = $resul['cedulaDe']; $nombreS = $resul['nombre']; $apellidoS = $resul['apellido']; $apellidoS2 = $resul['apellido2']; $edadS = $resul['edad']; $telefonoS = $resul['telefono']; $clave = $resul['cedulaSocio']; echo "<form id='msform' action='actualizarUsuarioPrincipal.php' method='post'>";
<ul class="icons"> <li><a href="#" class="icon fa-twitter"><span class="label">Twitter</span></a></li> <li><a href="#" class="icon fa-facebook"><span class="label">Facebook</span></a></li> <li><a href="#" class="icon fa-github"><span class="label">Github</span></a></li> <li><a href="#" class="icon fa-dribbble"><span class="label">Dribbble</span></a></li> <li><a href="#" class="icon fa-envelope"><span class="label">Email</span></a></li> </ul> </div> </div> <div id="tabla"> <fieldset> <h1>Aprobar Prestamos</h1> <?php require '../../conex.php'; $conex = new conex(); $sql = $conex->getConex()->prepare("SELECT * FROM prestamo"); $sql->execute(); $resul = $sql->fetchAll(); $conex->cerrarConex(); if (count($resul) > 1) { echo "<form id='msform' action='aprobarDB.php' method='post' >"; $id = 1; //variable contador echo "<table class='responstable'>"; echo "<tr>"; echo "<th>Id</th>"; echo "<th>Tipo Pago</th>"; echo "<th>Monto</th>"; echo "<th>Periodo</th>"; echo "<th>Cuotas</th>";
<h1>Solicitante de Fondo</h1> <?php require '../../conex.php'; $conex = new conex(); //Busca el solicitnate $sql = $conex->getConex()->prepare("SELECT * FROM solicitante WHERE :Cedula = cedula"); $sql->execute(array('Cedula' => $_POST['valorBuscar'])); $resul = $sql->fetch(); $conex->cerrarConex(); //Verifica si el solicitante existe si no lo redirige para que lo registre if (count($resul) < 2) { echo "<script type='text/javascript'>" . "if(confirm('No existe el Usuario, Desea registrarlo')){" . " window.location='../../usuario/registrarUsuario.php'; " . "}else{ window.location='../../princi.php'; }" . "</script>"; } else { echo "<label>" . "Nombre: " . $resul['nombre'] . " " . $resul['apellido'] . " " . $resul['apellido2'] . "</label><br>"; echo "<label>" . "Cedula: " . $resul['cedula'] . "</label>"; $conex = new conex(); $sql = $conex->getConex()->prepare("SELECT * FROM prestamo WHERE :Cedula = cedula"); $sql->execute(array('Cedula' => $_POST['valorBuscar'])); $resul = $sql->fetchAll(); $conex->cerrarConex(); //Verifica si el solicittante tiene creditos, los lista si no formulario para credito nuevo. if (count($resul) > 1) { $id = 1; //variable contador echo "<table class='responstable'>"; echo "<tr>"; echo "<th>Id</th>"; echo "<th>Tipo Pago</th>"; echo "<th>Monto</th>"; echo "<th>Periodo</th>"; echo "<th>Cuotas</th>";
echo "<script type='text/javascript'>" . "if(confirm('No tiene aportes, Desea agregar un aporte.')){ " . "window.location='aporte.php'; " . "}else{ window.location='BuscarSocioPrincipal.php'} " . "</script>"; } ?> </table> </div> <div class="content-2"> <table class="responstable"> <tr> <th data-th="Driver details"><span>Id</span></th> <th>Fecha de Retiro</th> <th>Monto</th> <th>Observacion</th> </tr> <?php $conex = new conex(); $sql = $conex->getConex()->prepare('SELECT* FROM retiros WHERE :Cedula = cedulaS'); $sql->execute(array('Cedula' => $_POST['valorBuscar'])); $result = $sql->fetchAll(PDO::FETCH_ASSOC); if (count($result) > 0) { foreach ($result as $r) { echo '<tr>'; echo '<td>' . $r['id'] . '</td>'; echo '<td>' . $r['fechaRetiro'] . '</td>'; echo '<td>' . $r['monto'] . '</td>'; echo '<td>' . $r['observacion'] . '</td>'; echo '</tr>'; } $conex->cerrarConex(); } else { echo "<script type='text/javascript'>" . "if(confirm('No tiene retiros, Desea retirar dinero.')){ " . "window.location='retiro.php'; " . "}else{ window.location='BuscarSocioPrincipal.php'} " . "</script>";