I myself am not sure where I'm going with this, but hear me out...
Is there any way to send frames post data as they are being created?
basically, if I have framset.php, that has
<framset rows="50,*">
<frame src="topframe.html" name="_top" />
<frameset cols="*,50">
<frame src="centerframe.php" name="_body" />
<frame src="menuframe.php" name="_menu" />
</framset>
</framset>
and I want centerframe.php and menuframe.php to receive posted form data. NO QUERYSTRING. And no sessions or cookies either... I want eveything to be done server side
I doubt this is possible, and really I'm just fooling around with the code, trying to see whats possible and what isn't.
I want to make it so that when a menu option is clicked, both the menu and the body are updated based on the choice made, and that is done in centerframe.php and menuframe.php... but I also have an index.php that has links to some of the menu options, and I want frameset.php to load with the correct info being displayed in centerframe and menuframe.