Este es el código:
Código PHP:
   $sql = mysql_query("SELECT * FROM jugadores WHERE team LIKE '%$buscar%'"); 
if($sql) { 
    while($u=mysql_fetch_array($sql)) {
echo "<center><table width=95% border=1 bordercolor=#E0E3ED><tr><td>".$u["ciudad"]."</td>"; 
echo "<td>".$u["poblacion"]."</td>"; 
echo "<td>".$u["region"]."</td>"; 
echo "<td>".$u["pais"]."</td></tr></table>";
 
} 
} 
    
 
 
