THANK YOU!!! I think your Javascript to PHP works! thank you THANK YOU!!!
But... I would like you to doublecheck my syntax, please. I noticed that it works both WITH and WITHOUT the semicolon. That tells me that I might have some syntax incorrect. Could you please look at every one of my punctuations to make sure it's perfect? And is there anything I could do to make it better and more efficient? Here are the pieces of code from my site that causes the popup window, with your suggestions:
//here's my Javascript
function selectWindow() {
v_info = document.form1.visitorinfo.value;
var visitor_info
address = "popup_page.php?visitorinfo=" + escape(nad);
window.open(visitor_info,"","scrollbars=yes,resizable=yes,HEIGHT=610,WIDTH=700,")
}
//visitor types in name here
<TEXTAREA NAME='visitorinfo' COLS='30' ROWS='5'></TEXTAREA>
//here's the text link for popup
You may <A HREF="#" onClick="selectWindow()">Click here</A>
....and, of course, in the popup window, everything appears perfectly, and the variable "$visitorinfo" now becomes a php variable.
But I'm not sure if all my punctuation is correct