OK, tras horas en internet logre hacer una solucion , la dejo aqui para quien la necesite ademas de mi
Código PHP:
Ver original<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
<div class="container">
<div class="row">
<h3>Buscar cliente</h3>
</div>
<form name="consulta1" method="post" action="ejecuta.php">
Codigo del producto:<input type="text" name="codigo" maxlength="10">
<input type="submit" value="Aceptar">
</form>
<p>
<center><a href="menu.php">volver</a></center>
</p>
</body>
</html>
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>Ver Autos disponibles</title>
<script>
function noesta(){
alert("Cliente no existe...");
window.location = "creacliente.php";
}
function esta(){
alert("Se encontro Cliente...");
}
</script>
</head>
<body>
<center><h1>Lista Clientes</h1> </center>
<?php
//quitar error de php 5.5
/******** CONECTAR CON BASE DE DATOS **************** */
/********* CONECTA CON LA BASE DE DATOS **************** */
/* ********************************************** */
//ejecutamos la consulta
$sql = "SELECT * FROM clientes WHERE rut='".$_POST['codigo']."'";
// verificamos que no haya error
echo "<script>noesta()</script>";
}
else {
echo "<script>esta()</script>";
echo "<table border='1'><tr><td>Rut</td><td>Nombre</td><td>Direccion</td><td>telefono</td>
</tr><tr>";
//obtenemos los datos resultado de la consulta
echo '<td>' . $row['rut']."</td>";
echo '<td>' . $row['nombre']."</td>";
echo '<td>' . $row['direccion']."</td>";
echo '<td>' . $row['telefono']."</td>";
}
echo "</tr></table>";
echo "";
}
?>
<center><a href="menu.php">Volver</a></center>
<center><a href="creaventa.php">Crear compra</a></center>
</body>
</html>