I'd like to transmit a variable from a main page to mutiple frame?
Here is the code I tried :
<FRAMESET COLS="73,*">
<FRAME SRC="sidebar.html" NAME="sidebar">
<FRAME SRC="main.php<? echo "?var1=$sessionvar1" ?>" NAME="main">
</FRAMESET>
//and it should be available to main.php as
$_GET['var1'].
But this deosn't work, and the use of globals variables don't seems to be a better idea...
Do you have an idea in how could I do?
Thanks all.