What do you mean, "return it to a php variable"?

The closest I can come to understanding your question is that you want
the form input in your bottom frame to be sent to another frame in your
top window for submission.

If that's any place close to correct, you need a javascript solution. In
any case, it won't/can't become a "php variable" until it is sent back
to the server. So why not submit the form from your bottom frame with a
target of the frame that you need the variable in and refresh that
frame?

..michael..

On Fri, 2002-08-02 at 10:14, Dave Leather wrote:
> Is there a way to read a FORM varaiable into PHP variable.  The kicker here
> is the form variable is in a framed window.
> 
> Example, I have my main page in a 2 part frame (90%/10%).  The bottom 10%
> has a form on it called 'fileform' with one text box called filevalue
> 
> -- source snippit --
> <FORM METHOD=POST NAME="fileform">
>   <input type="text" name="filevalue" readonly maxlength=11 size=11>
> </FORM>
> -- end snippit --
> 
> Now inside the 90% window, I have ANOTHER frameset (broken into 3 parts.. a
> left menu bar, a bottom instructional bar, and a main window.  I NEED the
> main window to grab the value from the 'fileform.filevalue' and return it to
> a PHP variable.
> 
> Any ideas????
> Dave
> 




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to