<html>
<body>
<head>
<title></title>
<script>
function Evento()
{
$conexion=mysql_connect("localhost","root","root") or die ("no se puedo hacer la conexion");
mysql_select_db("caninos",$conexion);
$consulta= "select * from cliente;";
$resultado=mysql_query($consulta,$conexion);
echo $resultado;
}
</script>
</head>
<form action=""javascript:Evento()"" method="POST">
<div align="center">
<H6>INGRESE LA CEDULA DEL CLIENTE A BUSCAR</H6>
<p align="center">
<table border=0>
<tr>
<th>CEDULA</th>
<th><input type="text" name="cedula"></th>
</tr>
<table>
<table border="0">
<tr>
<td>
<div align="center"><br>
<input type="submit" value="BUSCAR" onclick="Evento()"></div>
</form></td>
</tr>
</table>
</body>
</html>
GRACIASSS...............