Frames and Variables
Hi,
Is there anyway to have a framed page read the php variables from the
parent instance?
For my main page I have a few globals that set the accessability of the
page, I would like the frame I create to be able to read those too. It
seems the frame can't even read the cookie from the main page.
Thanks in advance
P
.
Relevant Pages
- Re: __builtins__ magic behavior
... dictionary to create a weak form of restricted execution" not only ... globals() or with a copy of globals. ... The exec statement, when given a string source, compiles it and eventually calls PyEval_EvalCodeEx, which creates a new frame using PyFrame_New and finally executes it. ... A frame object contains a pointer to the previous frame, the code to be executed, a pointer to the current globals *and* a separate pointer to the current builtins. ... (comp.lang.python) - Re: __builtins__ magic behavior
... the previous one share the same globals, ... builtins are copied into the new frame. ... differ the builtins are searched in globals. ... dynamically creating module objects, ... (comp.lang.python) - Re: Why doesnt eval of generator expression work with locals?
... both locals and globals. ... the Python interpreter has these the same: ... is that I find the frame where the code should be evaluated and then ... (comp.lang.python) |
|