Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

POST to frame on next page

Status
Not open for further replies.

Quasibobo

Programmer
Oct 11, 2001
168
NL
Hi,

I need to POST form-input to a page in a frameset on the next page. Something like this:

[tt]<form action="next_page.php" method="post">[/tt]

and next_page.php looks something like:

[tt]<html>
<frameset rows="100%","0">
<frame name="topFrame" src="patience.php">
<frame name="bottomFrame" src="form_handler.php">
</framset>[/tt]

How do I do that? I know with [tt]target="_blank"[/tt] you can POST input to a new window, but that's not what I'm looking for. I want to handle the form-input in the bottomFrame of the next page.

Any suggestions??

(and if someone knows: if this next_page.php opens in a popup... how can I send info to the bottomFrame IN the popup?)
</html>

Don't eat yellow snow!
 
Not sure if it works, but try:
Code:
<form action="next_page.php" method="post" [red]target="bottomFrame"[/red]>

--Chessbot

"See the TURTLE of enormous girth!"
-- Stephen King, The Dark Tower series
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top