El código HTML de este formulario es realmente simple como el siguiente: Instant Search < script type =”text/javascript” src=”http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js”> script> < input type =”text” id=”q” name=”q” /> El código JavaScript que vas a usar es el siguiente: El código PHP que necesitarás es el siguiente: if(!empty($_GET['q'])) { search(); } function search() { $con = mysql_connect(‘localhost’,'root’, ”); mysql_select_db(‘mydb’, $con); $q = mysql_real_escape_string($_GET['q'], $con); $sql = mysql_query(” SELECT p.title, SUBSTR(p.post,1,300) as post FROM Posts p WHERE p.title LIKE ‘%{$q}%’ OR p.post LIKE ‘%{$q}%’ “); //Create an array with the results $results=array(); while($v = mysql_fetch_object($sql)){ $results[] = array( ‘title’=>$v->title, ‘post’=>$v->post ); } //using JSON to encode the array echo json_encode($results); } ?> E...