Ver Mensaje Individual
  #12 (permalink)  
Antiguo 02/07/2012, 12:27
Avatar de ZonaRLX
ZonaRLX
 
Fecha de Ingreso: enero-2011
Mensajes: 75
Antigüedad: 13 años, 2 meses
Puntos: 2
Respuesta: Seleccionar tablas especificas

y para ser mas explicito necesito que me arroje resultados de 2 id's Ej

tener esto:

<html>
<head>
</head>
<body>
<table><tr><td>seccion</td><td>nombre</td></tr></table>
<table><tr><td>0000</td><td>Raul</td></tr></table>
<table><tr><td>1111</td><td>Samuel</td></tr></table>
<table><tr><td>0000</td><td>Esteban</td></tr></table>
<table><tr><td>1111</td><td>Fabian</td></tr></table>
<table><tr><td>2222</td><td>Ruben</td></tr></table>
</body>
</html>

al ingresar en los INPUTS [1111] y [2222]
obtener esto:

<html>
<head>
</head>
<body>
<table><tr><td>seccion</td><td>nombre</td></tr></table>
<table><tr><td>1111</td><td>Samuel</td></tr></table>
<table><tr><td>1111</td><td>Fabian</td></tr></table>
<table><tr><td>2222</td><td>Ruben</td></tr></table>
</body>
</html>