HTML
<select id = 'teamSelect'>....options....</select>
<div id = 'tableContainer'></div>
Javascript
$(function() {
$("#teamSelect").bind("change", function() {
$.ajax({
type: "GET",
url: "path/to/server/script.php",
data: "tid="+$("#teamSelect").val(),
success: function(html) {
$("#tableContainer").html(html);
}
});
});
});
Le code javascript effectuera une requête ajax vers un script php côté serveur (dans le code c'est le path/to/server/script.php
) Ce script interrogera votre base de données et affichera simplement la table comme vous le souhaitez. L'équipe sélectionnée sera dans le $_GET
variable 'tid'.