[PHP] Passing Variables to an iframe

2008-09-26 Thread Waynn Lue
This may be more a general HTML question, so let me know if I should post somewhere else. I was hoping to do some logic in a script, and then pass the results of that script to an iframe for more processing. Is it secure to include those variables as get parameters to the iframe, though? In othe

Re: [PHP] Passing Variables to an iframe

2008-09-26 Thread Bastien Koert
On Fri, Sep 26, 2008 at 7:17 AM, Waynn Lue <[EMAIL PROTECTED]> wrote: > This may be more a general HTML question, so let me know if I should post > somewhere else. > > I was hoping to do some logic in a script, and then pass the results of > that > script to an iframe for more processing. Is it s

RE: [PHP] Passing Variables to an iframe

2008-09-26 Thread Boyd, Todd M.
> -Original Message- > From: Waynn Lue [mailto:[EMAIL PROTECTED] > Sent: Friday, September 26, 2008 6:17 AM > To: PHP General list > Subject: [PHP] Passing Variables to an iframe > > This may be more a general HTML question, so let me know if I should > post >

RE: [PHP] Passing Variables to an iframe

2008-09-26 Thread Richard Lynch
Anybody can see it and change it. All user input, which always includes GET/POST/COOKIE data is always untrustworthy. > -Original Message- > From: Waynn Lue [mailto:[EMAIL PROTECTED] > Sent: Friday, September 26, 2008 6:17 AM > To: PHP General list > Subject: [PHP] Passi

Re: [PHP] Passing Variables to an iframe

2008-09-26 Thread Waynn Lue
Ah, that makes sense. Given all the input on this thread, I'll see if I can get sessions do what I want. Thanks! Waynn