On Fri, 2 Aug 2002 12:14:51 -0500, 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.
You wan to submit the form and display the results in another frame? What is you FORM action above? I assume some PHP program. You have to submit the form, PHP is server side. You want the results to go to a certain frame window. I have no idea, maybe the TARGET="frame window name" attribute as part of your FORM. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php