|
Posted by Cal Lidderdale on 11/10/14 11:50
<snip>
I had the same problem. Page 1 uses an image map (the layout of booths
at a festival). Depending on where you click it calls page 2, sending it
the booth number you selected popping up a new window with the booth
number preselected. (ooooooooo)
<.in.Javascript...>(page booth1.php)
url = "booth2.php?" + "booth=" + booth;
win4 = window.open (url ,"", option);
:-O Notice :-O Notice ... Notice
(oh shutup)
So I added the ?missing? items.
url = "booth2.php?" + "booth=" + booth +
"&name=&address=&phone=&email=&comment=";
win4 = window.open (url ,"", option);
The silence is deafening :-D
As an aside - Why da flip did someone decide that the "Notice" needed to
be spit out is beyond me. And shouldn't (is) there be a way to say
"Shhhhhhhh" IE "<?php -quite"
Navigation:
[Reply to this message]
|