Hi, I've got a problem with frames and php:
I want to create a frameset in php that passes through external variables.
In the menu page (in frame A) 3 variables are defined which are passed through to another page (in frame 😎. Instead of opening a standard php-page I want to open another frameset (main-index.php) in frame B. The important thing is that the 3 variables have to be passed through to the pages that main-index.php contains, because they determine the content of these pages. I have tried some things myself, but sadly enough I got no results. I can give you this bits of code:
the menupage submits the following to frame B:
main-index.php?category=A&type=B&name=C
main-index.php contains the following code:
$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>';
echo $$frame1;
echo $$frame2;
echo '</FRAMESET>';
I hope someone can help me. Thanks in advance for your replies, Michiel