simply put: by changing a link in the header in my php script, a dropdown box that changes between 3 clients redirects to our website search page.
to check this out, go to
https://www.electroniccourthouse.com/srw/
use u:p coghlan:coghlan to login to a dummy account.
click on "claimant submissions" under the second heading. it will open up a new window.
There will be a dropdown box with 3 parties in it. Change it to any other party and it goes to our website search page instead of the other parties' info.
All this because this:
PageHeader("Secure ResolutionRoom", "../global/header1.html");
was changed to:
PageHeader("Secure ResolutionRoom", "../includes/header.php.sec");
This is the dropdown menu code:
DropDownMenu('selected_id', $values, $options, 1, NULL, 'onchange=\'document.forms[0].submit()\'');
SO, like I said, I made one change to the header link, and now i get a search page. If I put it back like it was before, it all works. Not putting the header in is not an option. Any thoughts? Much appreciated.