sending values between frames

A

Anonymous

Guest
<a href = "welcome.html" target="mainwin">home</a>
In order to sedn variables you must transform the html page into a php page.
You should have something like <a href = "welcome.php?var=something" target="mainwin">home</a>
This should work .
 
<FRAMESET FRAMEBORDER="0" FRAMESPACING="0" BORDER="0" COLS="265,*">
<FRAME SRC="frame1.php" NAME="page">
<FRAMESET ROWS="165,*">
<FRAME SRC="frame2.php" NAME="menu1" MARGINWIDTH="0">
<FRAME SRC="frame3.php" NAME="menu2" MARGINWIDTH="0">
</FRAMESET>
<NOFRAMES>Sorry, youre browser not support frames :( </NOFRAMES>
</FRAMESET>
 
Back
Top