01/12/2015, 04:08
|
| | Fecha de Ingreso: noviembre-2015
Mensajes: 5
Antigüedad: 9 años, 1 mes Puntos: 0 | |
Respuesta: Mostrar resumen o detalle de un ticket Cita:
Iniciado por pilucho Prueba Asi:
Codigo Busqueda: search_lst.php
Código PHP:
Ver original<?php header('Content-Type: text/html; charset=ISO-8859-1'); require_once("conexion.php"); $lst=$_GET['enviar']; $query="SELECT T.idTicket, U.numero, T.tipoProb, T.estado, T.archivo FROM ticket T, unidadejecutora U WHERE T.idUnidadEjecutora = U.idUnidadEjecutora and T.idTicket='$lst' and T.idTicket LIKE '$lst%' "; if ($registro != 0) { echo " <tr> <td class='center'> "; ?> <a href="detalle_problema_recep.php?id=<?php echo $registro['idTicket'];?>"><?php echo $registro['idTicket'];?></a> <? echo "</td> <td class='center'>".$registro['numero']."</td> <td class='center'>".$registro['tipoProb']."</td> <td class='center'>".$registro['estado']."</td> <td class='center'> <div class='file-field input-field material-icons'> <input type='file'>attach_file ".$registro['archivo']." </div> </td> </tr> "; }else { echo ' <script> alert("Datos no encontrados, vuelva a intenarlo") </script> '; } } ?>
Buenas Estimado, tu aporte me fue de mucha utilidad ya que pude solucionar mi problema. Gracias por la ayuda |