Hi, I have got a question that has to do with framesets. Let me explain what I want: a visitor at my website can define the values of three different variables ($category, $type and $name) in the menu-frame. When the visitor submits these values a frameset (index-main.php) should open in the main-frame. The important thing is that the values of the variables have to be passed through to the pages that the frameset contains (title.php and main.php), because these determine the content of the template pages. So far I have managed to parse variables to other pages in the same frameset and I also know how to create variable variables, but I don't know how to combine these two the right way (I guess that's the solution to my problem). I can give you the folowing bits of code:
menu.php opens the page index-main.php by submitting the following to the main-frame:
main-index.php?category=A&type=B&name=C
index-main.php looks like this (in between the php-tags):
$frame1 = '<FRAME src=\"title.php?category='.$category.'&type='.$type.'&name='.$name.'\" name=\"title\">';
$frame2 = '<FRAME src=\"main.php?category='.$category.'&type='.$type.'&name='.$name.'\" name=\"main\">';
echo ('<FRAMESET rows=\"50,*\">');
echo $$frame1;
echo $$frame2;
echo ('</FRAMESET>')
Thanks in advance for your replies, Michiel