Re: [PHP] Interesting Problem (Sessions and Cookies)

2001-05-24 Thread Peter Dudley
You can indeed do this in javascript. You need to put a FORM on the page in the other frame and then access the data elements in that form with the syntax parent.frame[x].formname.elementname.value or something along those lines. This gets pretty ugly pretty quickly, IMO. Also, I think you coul

[PHP] Interesting Problem (Sessions and Cookies)

2001-05-24 Thread Jason Caldwell
Is there a way to store users input on *another* page (i use frames), in hidden fields, then be able to update those hidden fields as the user goes along, also, be able to extract that data when a user returns back to a previous form? I'm thinking of using this instead of Sessions or Cookies. Ba