parece que la variable $titulo no tiene data:
Código PHP:
$term = $_POST['title'];
$sql = mysql_query("select * from tabla1 where titulo like '%$titulo%'");
prueba con esto:
Código PHP:
$term = $_POST['title'];
$sql = mysql_query("select * from tabla1 where titulo like '%$term%'");
y no olvides 'limpiar' los inputs que recibes vía POST