lo que estoy tratando de realizar es una busqueda por tipo o seleccion como lo entienda jijij.. epero que me ayude por favor. espero su o pinion su critica.... disculpa por la ortografia
estes es mi formulario
<html>
<head>
<title>Problema</title>
</head>
<body>
<form action="pagina2.php" method="post">
Ingrese el mail del alumno a consultar:
<input type="text" name="id_errores">
<br>
<select name="SELECCIONAR" id="SELECCIONAR">
<option>id_errores</option>
<option>id_factura</option>
</select>
<input type="submit" value="buscar">
</form>
</body>
</html>
-----
<html>
<head>
<title>Problema</title>
</head>
<body>
<?php
$conexion=mysql_connect("localhost","root","123") or
die("Problemas en la conexion");
mysql_select_db("comialex",$conexion) or
die("Problemas en la selección de la base de datos");
$BUSQUEDA = $_POST['buscar'];
$seleccion = $_POST['SELECCIONAR'];
switch ($reg["seleccion"]) {
case 1:
$registros=mysql_query("select *
from errores where id_errores='$_REQUEST[id_errores]'",$conexion) or
die("Problemas en el select:".mysql_error());
if (!$consulta) {
die("ERROR AL BUSCAR LA INFORMACION: " . mysql_error());
}
$row = mysql_fetch_array($registros);
break;
break;
case 2:echo " hola";
break;
}
mysql_close($conexion);
?>
<table border="1">
<tr>
<td>id_errores</td>
<td>descripcion</td>
<td>fecha</td>
<td>hora</td>
<td>serie_sucursal</td>
<td>emple_reporta</td>
<td>tipo_reporte</td>
<td>prioridad</td>
<td>fecha_limite</td>
<td>estatus</td>
<td>emple_atiende</td>
<td>email_alterno</td>
<td>fecha_fin</td>
</tr>
<?php do { ?>
<tr>
<td><?php echo $row_registros['id_errores']; ?></td>
<td><?php echo $row_registros['descripcion']; ?></td>
<td><?php echo $row_registros['fecha']; ?></td>
<td><?php echo $row_registros['hora']; ?></td>
<td><?php echo $row_registros['serie_sucursal']; ?></td>
<td><?php echo $row_registros['emple_reporta']; ?></td>
<td><?php echo $row_registros['tipo_reporte']; ?></td>
<td><?php echo $row_registros['prioridad']; ?></td>
<td><?php echo $row_registros['fecha_limite']; ?></td>
<td><?php echo $row_registros['estatus']; ?></td>
<td><?php echo $row_registros['emple_atiende']; ?></td>
<td><?php echo $row_registros['email_alterno']; ?></td>
<td><?php echo $row_registros['fecha_fin']; ?></td>
</tr>
<?php } while ($row_registros = mysql_fetch_assoc($registros)); ?>
</table>
</body>
</html>
espero que me puedan ayudar les deseo un feliz año atodo ....