I have a very simple form:
<form action='signup_student.php?teacher_id={$teacher_id}' target="_blank" method='GET'>
<input type="submit" class='button' value='Add New Student' onClick="submit"></form>
This used to work, but then something changed and now when the button is clicked, the new page pops-up but the variable and everything is stripped out?
It just shows signup_student.php in the address bar. I could understand if it didn't show the variable value, but what would strip out the "?teacher_id="?
Thanks!
Elizabeth