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 | |
$fecha = $_POST['fecha']; | |
$hora = $_POST['hora']; | |
$nombre = $_POST['nombre']; | |
$apellido = $_POST['apellido']; | |
$conexion = mysql_connect("localhost","user","pass"); |
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 ('connect.php'); | |
$primerdisponible = ""; | |
$sql1 = mysql_query("SELECT MIN(Numero) AS Numero | |
FROM historial_inventario_cajas | |
WHERE Numero NOT IN (SELECT Numero | |
FROM inventario_cajas)"); |
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("Error"); | |
} | |
$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
$id $fecha | |
$cliente | |
$para | |
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 | |
$plantilla = file_get_contents('plantilla.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 | |
$id=""; | |
$fecha = ""; | |
$cliente = ""; | |
$para = ""; | |
$concepto = ""; | |
$responsable = ""; | |
$link = ""; | |
// Lee la plantilla | |
$plantilla = file_get_contents('plantilla.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 | |
$id="1"; | |
$fecha = "29/12/2002"; | |
$cliente = "Carlitos Bala"; | |
$para = "Ernesto Sabato"; | |
$concepto = " ... con cariño de carlitos .. una aspiradora"; | |
$responsable = "Carlos Flavio Jacinto Bala"; | |
$link = "http://www.poringa.net"; | |
// Lee la plantilla | |
$plantilla = file_get_contents('plantilla.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 | |
//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; |
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
<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> |
OlderNewer