the actual problem is as follows:
i have the check box "freim" on the form, which initiates the "frame show mode"
then in the beginning of the "result .php" i have following code
(actually included as "top.inc", could that be the problem?!?):
--
if (isset($freim)) {
if ($freim == "on") {
echo "<FRAMESET COLS='100%' ROWS='320,*'>";
echo "<FRAME NAME='top' SRC=$PHP_SELF>";
echo "<FRAME NAME='bottom' SRC='bottom.html'>";
echo "</FRAMESET>";
} else {
echo "<title>Normal no-frame title</title>";
}
} else {
echo "<title>Normal no-frame title</title>";
}
It works great in the "no-frame" mode, but looses the contents of (form and global) variables in the "frame" mode (freim=on).
How do I get to see the variables?
--janne