The way I have my form (editroster is the name) now with a drop down menu and there is a load button:
<INPUT name = "load" type = "SUBMIT" VALUE = "LOAD">
and then the following if statment
if (isset($_POST['load']))
{
executes bunch of code here
}
Now I want to replace that load button with:
onchange=editroster.submit()
However once I do that and take away the load button, it dosen't submit the form anymore. I can't seem to get it to work.