This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- phpMyAdmin SQL Dump | |
-- version 4.0.4 | |
-- http://www.phpmyadmin.net | |
-- | |
-- Servidor: localhost | |
-- Tiempo de generación: 15-10-2015 a las 22:18:52 | |
-- Versión del servidor: 5.6.12-log | |
-- Versión de PHP: 5.4.12 | |
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$diferencia_mes = " "; | |
$estado = " "; | |
$mes_actual = " "; | |
$mes_actual = date("m"); | |
$año_actual = date("Y"); | |
//lista completa | |
$busqueda = mysql_query("SELECT anio, mes, estado, Id_Cliente AS cliente | |
FROM estado_tarea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Formulario para editar. | |
<table class="b" id="b"> | |
<form method="POST" action="addeditarinventariolibros.php" > | |
<input type="hidden" name="id" value=<?php echo $id;?> /> | |
<tr> | |
<td class="titulostablas">Cliente</td> | |
<td class="titulostablas">Libro</td> | |
<td class="titulostablas">N° Libro</td> | |
<td class="titulostablas">N° Rubrica</td> | |
<td class="titulostablas">Fecha</td> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if(!isset($_GET['id'])) | |
{ | |
exit("no se argumento correctamente"); | |
} | |
$id = $_GET['id']; | |
$guardar = 'seminario/envio/recibos/'.$id.'.rtf'; | |
//header('refreshurl=/Seminario/envio/recibos/'.$id.'.rtf'); | |
echo '<meta http-equiv=refresh content=0;URL=/'.$guardar.'>'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$id=""; | |
$fecha = ""; | |
$cliente = ""; | |
$para = ""; | |
$concepto = ""; | |
$responsable = ""; | |
$link = ""; | |
// Lee la plantilla | |
$plantilla1 = file_get_contents('plantilla1.rtf'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
include("../includes/connect.php"); | |
if(!isset($_GET['id'])) | |
{ | |
exit("no se argumento correctamente"); | |
} | |
$id = $_GET['id']; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
include ('../includes/connect.php'); | |
$idcliente = ""; | |
$idusario = ""; | |
$cliente=""; | |
$fecha=""; | |
$para= ""; | |
$concepto= ""; | |
$responsable= ""; | |
$enviadopor= ""; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form method="post" action="addenvio.php"> | |
<tr> | |
<td>Fecha *</td> | |
<td>Cliente *</td> | |
<td>Para</td> | |
<td>Concepto *</td> | |
<td>Responsable *</td> | |
<td>Enviado Por *</td> | |
<td>Receptor</td> | |
<td>Observaciones</td> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
include("../includes/connect.php"); | |
$denominacion = ""; | |
$id = ""; | |
$mes = date("m"); | |
$año = date("Y"); | |
if(!isset($_GET['id'])) | |
{ | |
exit("No se argumentó correctamente"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//lista indexada por período y cliente | |
if ($periodo!="" AND $busca!="") | |
{ | |
$s = 0;//inicializo $s = 0 para el acumulador | |
///////////// | |
$busca=$_POST['buscar']; | |
$periodo=$_POST['periodo']; | |
$sqldoinicial = 0; |
NewerOlder