[PHP] Re: Passing Form Values

2002-06-26 Thread Taylor York
I would suggest posting the vars to a page, which will open up a new javascript window, then .write("") the values into the javascript window from the main page. OpenWindow = window.open("", "newWindow", "height=400, width=300,toolbar=yes,scrollbars=yes,menubar=yes"); OpenWindow.document.write("

[PHP] Re: passing form values

2001-12-09 Thread Fred
This is precisely the type of situation session variables are designed for. I'm not sure why you would think that using sessions is overkill. You can accomplish your task with sessions in less lines of code than it would take to implement another solution and the sessions solution is more elegant