I am submitting a form to a page called main.php. Problem is main.php is actually the file containing the frameset with 2 frames called one.php and two.php inside it.
How can I automatically pass in POST variables from main.php to one.php?
Changing to non-frame is not an option. I also prefer not to use querystring or session variables or cookies to pass in the information.
Never mind. I decided to use querystring instead. Doesn't look like there are any other options.