Search found 4 matches

by amer
Wed May 26, 2004 10:33 am
Forum: PHP - Code
Topic: $_SESSION NOT TRANSFERED INTO IFRAME
Replies: 9
Views: 695

yes, thanks very much - it is printing $x !!!
by amer
Wed May 26, 2004 10:12 am
Forum: PHP - Code
Topic: $_SESSION NOT TRANSFERED INTO IFRAME
Replies: 9
Views: 695

no it is not about "caution not to use session_register if $_SESSION is being used"; i have use the session_register just to show that if it is used some variable come into iframe; without it there is the asme result;
by amer
Wed May 26, 2004 10:11 am
Forum: PHP - Code
Topic: $_SESSION NOT TRANSFERED INTO IFRAME
Replies: 9
Views: 695

completely not; any difference made
by amer
Wed May 26, 2004 9:49 am
Forum: PHP - Code
Topic: $_SESSION NOT TRANSFERED INTO IFRAME
Replies: 9
Views: 695

$_SESSION NOT TRANSFERED INTO IFRAME

Could anyone find solution and help me to understand the sitaution ? <? session_start(); $_SESSION['x']="x"; session_register("register"); $register="y"; ?> <iframe src=x.php></iframe> <? X.PHP session_start(); $id=session_id(); print<<<end $register $_SESSION['x'] $id ...