Re: Which script runs first?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The way frames are loaded is actually dependent of many things I think (size and browser e.g.), so, most secure is to use javascript, or, let PHP check if the var is set, and if not, reload...

you can do this like this:

javascript:
left.php:
<body onload="parent.frames['targetframename'].location='page'"> // can be a little different, but I think it is correct...


PHP method:
in main.php:
if (!isset ($_SESSION["var"])) header ("location: {$_SERVER["PHP_SELF"]}"); // or something like this what will do the same...


gustav@xxxxxxxxxxxxxx wrote:

Hi there!

I have two frames, one with left.php in the left frame and one with
main.php in the right frame.

I refresh the contents of main.hp at the end of left.php.  (With help of
Javascript actually, maybe could be done with HEADER(...))

My Question:
Is it ALWAYS so that left.php must be executed before the right frame is
loaded? I wonder this because a session-variable are set in left.php that
main.php is dependent of. So this session-variable must be set before
main.php is loaded.


/G @varupiraten.se




-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux