Hello
I'm working on a webpage that contains 2 frames. The first one contains a form with 2 input fields (named "host" and "port") and a submit button, that calls a PHP script for processing ("readform.php").
The second frame should load as a blank page initially, but when data have been posted in the first frame, these data are to be used to run a script ("main.php") in the second frame, with the appropriate output.
My question is : is there a way to use output from one frame (contained in a PHP script) inside another frame (main.php), and is there a possibility to reload the second frame with $host and $port as parameters (i.e. setting $host and $port in
main with the values from readform, then executing the code in main so that it replaces the blank frame)?
Thanks!