Re: [PHP] submitting form to a page with frames

2001-11-01 Thread Brent Rieck
Matt, It sounds like you have a process where the user does this: page1.php -> fills out and submits form -> page2.php which builds a frameset -> menu.php and editor.php as the frames, you want menu.php to know what the submitted form values were. If you've got sessions go

Re: [PHP] submitting form to a page with frames

2001-11-01 Thread Tom Rogers
The simplest way is to use sessions to hold the values, or you can loop through the post vars and add them to the menu.php line like src=menu.php?var1=&var2=xxx... which will get messy if you have a lot of fields. Tom At 09:08 AM 2/11/01, Matt Fair wrote: >I have 2 pages page1.php and

Re: [PHP] submitting form to a page with frames

2001-11-01 Thread Jim Lucas
try using the $GLOBALS[variable_name] array. Jim - Original Message - From: "Matt Fair" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, November 01, 2001 3:08 PM Subject: [PHP] submitting form to a page with frames > I have 2 pages page1.php

[PHP] submitting form to a page with frames

2001-11-01 Thread Matt Fair
I have 2 pages page1.php and page2.php. I want to submit the form and its values to page2.php. page2.php has frames: How can I get the variables that were submitted from page1.php into the menuFrame? When I do this it doesn't get any php variables, but if I take it out of the frame it wo