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);
}
});
});
});
Il codice javascript eseguirà una richiesta ajax a uno script php lato server (nel codice è il path/to/server/script.php
) Questo script interrogherà il tuo database e produrrà semplicemente la tabella come desideri. La squadra selezionata sarà nel $_GET
variabile 'tid'.