el primer archivo donde haces la consulta y todo eso:
Código PHP:
Ver original<!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=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<?php require_once('../Connections/drcoche.php'); ?>
<?php $nombre=$_POST['nombre']; ?>
<?php $dni=$_POST['dni']; ?>
<?php
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ?
intval($theValue) : "NULL"; break;
case "double":
$theValue = ($theValue != "") ?
"'" . doubleval($theValue) . "'" : "NULL"; break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$query_pornombre = "SELECT Nombre, Apellidos, DNI, Poblacion, Telefono, Correo, Matricula FROM clientes WHERE nombre='$nombre' or dni='$dni' ORDER BY nombre ";
$DNI= $row['DNI'];
echo "<br>";//esto es para que no muestre todos los datos uno junto a otro si no con un salto de linea
echo"<a href='procesardni.php?dni=".$DNI."'>Informacion de ".$DNI."</a>";
}
?>
</body>
</html>