I'm trying to pass form variables to a popup window, but am having little success. My biggest sticking point is a multiple select list with the name appended with [], so PHP will recognize it as an array. I also have a single value drop-down element. I've tried to write some JS that will pass the variables, but to no avail. Any ideas?
in the form action page, take your $POST($GET)variables and then
echo "<script language='javascript'> window.open(url here..?var1=$GET[var1])</script>";
in the popup window, access the variables via $_GET["var1"]