I have a table that is populated from a Database. How would I go about only having this table populate once the user changes a selectbox option? I think I need to us AJAX and onchange for the dropdown as the query for the table will alter pending the dropdown selection, though im not sure how to go about this. I know it can't be too hard, but I need to see an example before I can understand it and apply elsewhere.
Using php 5.2
I tried following the W3 examples but they did not seem to cover this area. More of loading an existing file to present text. I wasn't sure how to apply that to this.
<td style="vertical-align: top;">
<select name="caseless_numbers" id="ValTwo" class="DropChange">
<option value=""></option>
<option value="1">A</option>
<option value="2">B</option>
<option value="3">C</option>
<option value="4">D</option>
</select>
</td>