Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/02/2006, 13:59
Avatar de mauled
mauled
 
Fecha de Ingreso: marzo-2005
Ubicación: Cd. de México.
Mensajes: 3.001
Antigüedad: 19 años, 2 meses
Puntos: 33
Código PHP:
<?
$matricula 
$_POST['matricula']//Suponiendo que estes enviando por Post los datos

$query pg_exec($db_connec,"Select * from tutabla where matricula='$matricula'");

while (
$query pg_fetch_object ($qu$row)){
echo 
$query->matricula;
echo 
$query>nombre;
.
.
.
$row++}

?>