Mira tengo otro archivo, este me muestra en un combo el folio que existe en la tabla "reporte", y al seleccionar uno y dandole clic en -->Aceptar, me muestra los datos...
He querido hacerlo con usuarios pero no he podido, ademas de que he querido agregarle un rango de fechas como lo hemos estado asiendo...
te agrego el codigo para que lo veas... con respecto a lo demas ps no he podido hacerlo no me ha salido...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>***Reporte***</title>
<style type="text/css">
<!--
.Estilo5 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
}
-->
</style>
</head>
<body>
<form id="form2" name="form2" method="post" action="buscar_folio.php">
<table width="75%" border="0">
<tr>
<td> </td>
<td> </td>
<td><p class="Estilo5"> </p>
<p class="Estilo5">Seleccione el Folio: </p></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td><label><br />
Código PHP:
Ver original<?php
if (!$CONEXION) {
die("p class='Estilo1' align='center'>LO SIENTO, PERO NO HA PODIDO CONECTARSE A MYSQL: </p>" . mysql_error()); }
else{
echo "<select name=ART>";
echo "<option selected='' value=''> [ Seleccione ] </option>";
echo "<option value=".$ARTICULO["folio"].">".$ARTICULO["folio"]."</option>";
}
echo "</select>";
}
else{
$ERROR_CONSULTA="NO SE PUEDEN MOSTRAR LOS DATOS DEBIDO AL SIGUIENTE ERROR: ";
}
}
?>
<input type="submit" name="ACEPTAR" value="ACEPTAR" />
</label></td>
<td> </td>
</tr>
</table>
</form>
Código PHP:
Ver original<?php
if (isset($_POST["ACEPTAR"])){ $ART=$_POST["ART"];
$ART_SEL=mysql_query("SELECT folio, fecha, hora, unidad, nombre FROM reporte , unidades, usuarios WHERE reporte.id_unidad=unidades.id_unidad AND reporte.id_nom=usuarios.id_nom AND reporte.folio=$ART"); echo "<table width='800' border='1' align='center'>
<tr>
<th width='90' scope='col'>FOLIO</th>
<th width='66' scope='col'>FECHA</th>
<th width='65' scope='col'>HORA</th>
<th width='69' scope='col'>UNIDAD</th>
<th width='66' scope='col'>NOMBRE</th>
</tr>
<tr>
<td>".$fila['folio']."</td>
<td>".$fila['fecha']."</td>
<td>".$fila['hora']."</td>
<td>".$fila['unidad']."</td>
<td>".$fila['nombre']."</td>
</tr>
</table>";
}
else{
echo "<div class='Estilo2' align='center'>EL FOLIO NO EXISTE</div>";
}
}
?>
</body>
</html>