Пример #1
0
 public function grabar(PROVINCIA $provincia)
 {
     $conn = new Conexion();
     $querys = "INSERT INTO provincia " . "(idProvincia, Descripcion, Abreviatura, idUsuario, FechaAuditoria) " . "Values(" . $provincia->getIdProvincia() . ",\r\n                  '" . $provincia->getDescripcion() . "',\r\n                  '" . $provincia->getAbreviatura() . "',\r\n                  " . $provincia->getIdUsuario() . ",\r\n                  '" . $provincia->getFechaAudioria() . "')";
     $conn->consulta($querys);
     return true;
 }
Пример #2
0
 public function grabar(USUARIO $usuario)
 {
     $conn = new Conexion();
     $querys = "INSERT INTO usuarios " . "(idEmpresa, idUsuario, apellido, nombre, email, password) " . "Values(" . $this->idEmpresa . ",\r\n                  '" . $usuario->getidUsuario() . "',\r\n                  '" . $usuario->getApellido() . "',\r\n                  '" . $usuario->getNombre() . "',\r\n                  '" . $usuario->getEmail() . "',\r\n                  '" . $usuario->getPassword() . "')";
     $conn->consulta($querys);
     return true;
 }
Пример #3
0
 public function grabar(LEGAJO $legajo)
 {
     $conn = new Conexion();
     $querys = "INSERT INTO legajo( \r\n                 idEmpresa, idLegajo, Apellido, Nombre, FechaNacimiento, idTipoDocumento,\r\n                 NroDocumento, Sexo, idEstadoCivil, idGrupoSanguineo, ManoHabil,\r\n                 idProvincia, idPartido, idLocalidad, DirCalle, DirAltura, DirPiso, DirDpto,\r\n                 Telefono, Movil, Email, idUsuario) " . "Values(" . $this->idEmpresa . ",\r\n                  " . $legajo->getIdLegajo() . ",\r\n                  '" . $legajo->getApellido() . "',\r\n                  '" . $legajo->getNombre() . "',\r\n                  '" . $legajo->getFechaNacimiento() . "',\r\n                  " . $legajo->getIdTipodocumento() . ",\r\n                  '" . $legajo->getNroDocumento() . "',\r\n                  " . $legajo->getSexo() . ",\r\n                  " . $legajo->getIdEstadoCivil() . ",\r\n                  " . $legajo->getIdGrupoSanguineo() . ",\r\n                  '" . $legajo->getManoHabil() . "',\r\n                  " . $legajo->getIdProvincia() . ",\r\n                  " . $legajo->getIdPartido() . ",\r\n                  " . $legajo->getIdLocalidad() . ",\r\n                  '" . $legajo->getDirAltura() . "',\r\n                  '" . $legajo->getDirAltura() . "',\r\n                  '" . $legajo->getDirPiso() . "',\r\n                  '" . $legajo->getDirDpto() . "',\r\n                  '" . $legajo->getTelefono() . "',    \r\n                  '" . $legajo->getMovil() . "',\r\n                  '" . $legajo->getEmail() . "',    \r\n                  1)";
     echo $this->IdUsuario;
     echo $querys;
     $conn->consulta($querys);
     return true;
 }
                        <td>ID</td>
                        <td>Usuario</td>
                        <td>Contraseña</td>
                        <td>Correro Electronico</td>
                        <td>Telefono</td>
                    </thead>
                    <?php 
/**
 * Created by PhpStorm.
 * User: kevin
 * Date: 16/09/15
 * Time: 09:40 PM
 */
include 'conexion.php';
$db = new Conexion();
$consulta = $db->consulta($query);
if ($db->num_rows($consulta) > 0) {
    while ($resultado = $db->fetch_array($consulta)) {
        echo "<tr>";
        echo "<td>" . $resultado[0] . "</td><td>" . $resultado[1] . "</td><td>" . $resultado[2] . "</td><td>" . $resultado[3] . "</td><td>" . $resultado[4] . "</td>";
        echo "</tr>";
    }
}
?>
                </table>
                <form class="form-horizontal" role="form" method="get">
                    <div class="form-group">
                        <label for="search" class="col-lg-2 control-label">Buscar por usuario</label>
                        <div class="col-lg-10">
                            <input type="text" class="form-control" name="search">
                        </div>
Пример #5
0
<?
require('conexion2.php');
$conexion = new Conexion('localhost', 'root', 'admin');
$nombre = $_POST['nombre'];

$conexion->consulta("INSERT INTO usuarios(nombre) VALUES ('$nombre') ");

echo "Se ha creado el usuario ".$nombre;
header("Location: ../usuarios");
?>
Пример #6
0
            include 'class.Usuario.php';
            $registro = new Usuario();
            $registro->modificar($_POST['nombre'], $_POST['apellido'], $_POST['email'], $_POST['id']);
            header('location: index.php');
        }
        break;
    case 'borrar':
        include 'class.Usuario.php';
        $registro = new Usuario();
        $registro->borrar($_GET['id']);
        header('location: index.php');
        break;
    default:
        //vista del index
        $bd = new Conexion();
        $resultado = $bd->consulta("select * from usuario_table");
        echo '<form action="registro.php" method="post">';
        echo '<table border = "1">';
        echo '<tr><td>Nombre</td><td>Apellido</td><td>Email</td><td>Acciones</td></tr>';
        if ($resultado != NULL) {
            if (count($resultado) > 0) {
                foreach ($resultado as $row) {
                    echo '<tr><td><input type="hidden" name ="id" value="', $row['id'], '">', $row['nombres'], '
							</td><td>', $row['apellidos'], '
							</td><td>', $row['correo'], '
							</td><td><a href="modificar.php?id=', $row['id'], '">Modificar</a><br/>
							<a href="index.php?modo=borrar&id=', $row['id'], '">Borrar</a></td></tr>';
                }
            } else {
            }
            $bd->liberar($resultado);
Пример #7
0
        if (isset($_POST['modificar'])) {
            include 'class.Usuario.php';
            $registro = new Usuario();
            $registro->modificar($_POST['nombre'], $_POST['apellido'], $_POST['email'], $_POST['id']);
            header('location: index.php');
        }
        break;
    case 'borrar':
        include 'class.Usuario.php';
        $registro = new Usuario();
        $registro->borrar($_GET['id']);
        header('location: index.php');
        break;
    default:
        $bd = new Conexion();
        $resultado = $bd->consulta('select * from usuario_table');
        echo '<form action="registro.php" method="POST">';
        echo '<table border="1"><tr><th>Nombre</th><th>Apellido</th><th>Correo</th><th>Acciones</th></tr>';
        foreach ($resultado as $row) {
            echo '<tr><td>', $row['nombres'], '</td><td>', $row['apellidos'], '</td><td>', $row['correo'], '</td>
			<td><a href="modificar.php?id=', $row['id'], '">Modificar</a>
			<a href="index.php?modo=borrar&id=', $row['id'], '">Borrar</a></td></tr>';
            $bd->next();
        }
        echo '<tr><td colspan="4" align="center"><input type="submit" value="Resgistrate" /></td></tr>';
        echo '</table>';
        echo '</form>';
        break;
}
?>
</div>
    $Sql2 ="DESCRIBE ".$Rs[0];
    $result2 = mysql_query( $Sql2 ) or die("No se puede ejecutar la consulta: ".mysql_error());
    echo '<table width="100%" class="listado_tablas">';
    echo '<tr><th colspan="4">'.$Rs[0].'</th></tr>';

    //MOSTRAMOS LA INFORMACION DE LOS CAMPOS
    while($Rs2 = mysql_fetch_array($result2)) {
    echo '<tr>';
    echo '<td width="55%">'.$Rs2['Field'].'</td>';
    echo '<td width="25%">'.$Rs2['Type'].'</td>';
    echo '<td width="10%">'.$Rs2['Null'].'</td>';
    echo '<td width="10%">'.$Rs2['Key'].'</td>';
    echo '</tr>';
    }
    echo '</table>';
    } */


	require ("conexion.php");

	$miconexion = new Conexion;
	$miconexion->conectar("staffcenter", "atc-nh-natsdb.nationalnet.com", "staffcenter", "XgwofvLY2ayLf");
	$resultado = $miconexion->consulta("delete from horario where id_usuario = 133;");


print_r($resultado);

    ?>

</body>
</html>
Пример #9
0
<html>
<head><title>Test</title></head>
<body>
	<div align="center"><h3>Usuarios del Sistema</h3>
<?php 
include 'class.Conexion.php';
$bd = new Conexion();
$resultado = $bd->consulta("select * from usuario_table where id = '" . $_GET['id'] . "';");
echo '<form action="index.php?modo=modificar" method="post">';
echo '<table border = "1">';
echo '<tr><th colspan="3">Modificar Información</th></tr>';
echo '<tr><td>Nombre</td><td>Apellido</td><td>Email</td></tr>';
if ($resultado != NULL) {
    if (count($resultado) > 0) {
        foreach ($resultado as $row) {
            echo '<tr><td><input type="hidden" name ="id" value="', $row['id'], '"><input type="hidden" name ="modificar" value="1">', '<input type="text" name ="nombre" value="', $row['nombres'], '"/>
					</td><td><input type="text" name ="apellido" value="', $row['apellidos'], '"/>
					</td><td><input type="text" name ="email" value="', $row['correo'], '"/>';
        }
    } else {
    }
}
echo '<tr><td colspan=4><center><input type="submit" value="Enviar"></center></td></tr>';
echo '</table></form>';
?>
</div>
</body>
</html>
 public function borrar($a)
 {
     $bd = new Conexion();
     $bd->consulta("delete from usuario_table where id = '{$a}';");
 }
                                  <div class="col-md-12">
                                    <div class="col-md-4 pull-right">
                                      <button type="submit" class="btn btn-primary btn-block pull-right">Registrar reportes</button>
                                    </div>
                                  </div>
                                </div>
                    </form>
                </div>
            </div>
                <script>registrarAsistenciaSemanal()</script>                        
            ' . $scripts;
        break;
    case 'registrar seguimiento':
        $conexion = new Conexion();
        $conexion->conectar();
        $fechas = $conexion->consulta("SELECT DISTINCT `FECHA_S` FROM seguimiento WHERE seguimiento.GRUPO_S='{$u}' ORDER BY FECHA_S DESC ");
        ?>
      
 

      <?php 
        while ($fechasSegui = mysql_fetch_array($fechas)) {
            $fechaArr = $fechasSegui[0];
            echo "<div class='bs-callout bs-callout-info'>\n              <h4>" . $fechaArr . "</h4>\n          </div>";
            $peticionGE = $conexion->consulta("SELECT `ROL_S`,`ACTIVIDAD_S`,`HECHO_S`,`RESULTADO_S`,`CONCLUSION_S`,`OBSERVACION_S`  FROM seguimiento WHERE seguimiento.GRUPO_S='{$u}' AND FECHA_S ='{$fechaArr}'");
            while ($seguimiento = mysql_fetch_array($peticionGE)) {
                $rolGE = $seguimiento[0];
                $actividad = $seguimiento[1];
                $hechoGE = $seguimiento[2];
                $resultado = $seguimiento[3];
                $conclusion = $seguimiento[4];
Пример #12
0
        $template->display('public/usuarios.tpl');
        break;
    case 'claveperdida':
        echo 'clave perdida';
        break;
    default:
        if (isset($_GET['error']) and $_GET['error'] == 'campos_vacios') {
            $template = new Smarty(1);
            $template->assign(array('error' => 'ERROR: Debes llenar todos los campos.'));
            $template->display('public/index.tpl');
        } else {
            if (isset($_GET['error']) and $_GET['error'] == 'datos_incorrectos') {
                $template = new Smarty(1);
                $template->assign(array('error' => 'ERROR: Datos Incorrectos.'));
                $template->display('public/index.tpl');
            } else {
                if (isset($_GET['error']) and $_GET['error'] == 'acceso') {
                    $template = new Smarty(1);
                    $template->assign(array('error' => 'La sessión a caducado o no has iniciado sesión.'));
                    $template->display('public/index.tpl');
                } else {
                    $template = new Smarty(1);
                    $bd = new Conexion();
                    $dato = $bd->consulta("select count(*) total from usuario_table");
                    $template->assign(array('cero' => $dato[0]['total']));
                    $template->display('public/index.tpl');
                }
            }
        }
        break;
}
<?php
$transaccion = $_GET["t"];
switch($transaccion){
	case '1':
			$usuario=$_POST['username'];		//Capturar el login
			$password=$_POST['password'];		//Capturar el password
			require ("conexion.php");
			
			$miconexion = new Conexion;
			$miconexion->conectar("staffcenter", "atc-nh-natsdb.nationalnet.com", "staffcenter", "XgwofvLY2ayLf");
			$miconexion->consulta("select * from tipo_usuario");
			
			/*$num_registros = $miconexion->numregistros();
                        print_r($num_registros);*/
			
			$tipo = $miconexion->StoredProcedure("call ValidarUsuario ('$usuario', '$password')");
			if (is_numeric($tipo))
			{
					//tiempo en segundos, 1200/60= 20 minutos
					setcookie("validado",$usuario.",".$tipo.",".$password,time()+3600,"/");
					echo "<SCRIPT LANGUAGE=\"JavaScript\">";
					echo "window.location.href = \"principal.php?usuario=$usuario&tipo=$tipo\"";
					echo "</script>";
			}
			else
			{
				readfile("headerindex.html");
				echo"
					<form name=\"login_form\" action=\"index.php?t=1\" method=\"post\">
					<input id=\"tipo\" name=\"tipo\" type=\"hidden\" value=\"ingresar_sistema\" size=\"25\" />