I have two drop down lists generated from SQL queries on a database. They are the following:
<?php
$conn = new mysqli('localhost', 'root', '', 'Rosters')
or die ('Cannot connect to db');
$result = $conn->query("SELECT City, Name FROM Teams");
echo "<select name='Teams'>";
while ($row = $result->fetch_assoc()) {
unset($city, $team);
$city = $row['City'];
$name = $row['Name'];
$fullname = $city." ".$name;
echo '<option value="'.$fullname.'">'.$fullname.'</option>';
}
echo "</select>";
?>
and
<?php
$conn = new mysqli('localhost', 'root', '', 'Rosters')
or die ('Cannot connect to db');
$team = "Chicago Blackhawks";
$result = $conn->query("SELECT Number, First, Last FROM `$team`");
echo "<select name='Players'>";
while ($row = $result->fetch_assoc()) {
unset($number, $first, $last);
$number = $row['Number'];
$first = $row['First'];
$last = $row['Last'];
$fullname = $first." ".$last;
echo '<option value="'.$fullname.'">'.$number." - ".$fullname.'</option>';
}
echo "</select>";
?>
The first one has is a list of teams in the NHL. The second one is a list of players from that team. I am trying to make it so that the second one will update when the first one is changed (based on the "value" of the "option"). For this to work, the $team variable in the second snippet of code need to be updated. Since PHP is server-side and cannot be dynamically updated, how would I do this? Even with AJAX the answer doesn't seem obvious. Am i using a flawed approach altogether?
You have to use ajax on change of first dropdown and call php file from ajax and return data from php file to ajax and display it in second dropdown.