Re: [PHP] solved Re: [PHP] sessions, IE and pop-up windows

2003-06-10 Thread Emma Jane Hogbin
is seeing the session ID neither in the URL nor in a cookie -- i.e. not at all -- and hence the need to add the SID information manually. Ahh!! Yes, I'm using an external .js file to create the pop-up window. emma -- Emma Jane Hogbin [[ 416 417 2868 ][ www.xtrinsic.com ]] -- PHP General

Re: [PHP] confusing problem or am just plain confused....

2003-06-10 Thread Emma Jane Hogbin
the one I like. :) emma -- Emma Jane Hogbin [[ 416 417 2868 ][ www.xtrinsic.com ]] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] sessions, IE and pop-up windows

2003-06-09 Thread Emma Jane Hogbin
(); Any suggestions on how I can use pop-up windows for editing and maintain a person's logged in status? thanks! emma -- Emma Jane Hogbin [[ 416 417 2868 ][ www.xtrinsic.com ]] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Session not working?

2003-06-09 Thread Emma Jane Hogbin
in the wrong directory for test3.php? emma -- Emma Jane Hogbin [[ 416 417 2868 ][ www.xtrinsic.com ]] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Session not working?

2003-06-09 Thread Emma Jane Hogbin
script and it's not in the archives yet; however, are you using the right syntax for the header function? header(Location: http://www.example.com/;); Note that the Location must be uppercase L. -- Emma Jane Hogbin [[ 416 417 2868 ][ www.xtrinsic.com ]] -- PHP General Mailing List (http

Re: [PHP] sessions, IE and pop-up windows

2003-06-09 Thread Emma Jane Hogbin
running in background. It seems it's waiting the other PHP to finish... and sometimes it can be a problem. Create 2 different sessions by setting 2 different names : session_name() solve the problem. Benja. -- Emma Jane Hogbin [[ 416 417 2868 ][ www.xtrinsic.com ]] -- PHP General Mailing List

Re: [PHP] Session not working?

2003-06-09 Thread Emma Jane Hogbin
to another page if *nothing* else has been printed/echoed to the browser. Can you check to make sure that this is the very first thing that is called on the page? emma -- Emma Jane Hogbin [[ 416 417 2868 ][ www.xtrinsic.com ]] -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] sessions, IE and pop-up windows

2003-06-09 Thread Emma Jane Hogbin
window function openEdit(params) { var url = editsmall.php?+params; var ewin = window.open(url, ewin, width=500,height=300,toolbar=0,resizable=1,scrollbars=1); ewin.focus(); } -- Emma Jane Hogbin [[ 416 417 2868 ][ www.xtrinsic.com ]] -- PHP

Re: [PHP] sessions, IE and pop-up windows

2003-06-09 Thread Emma Jane Hogbin
a session_start somewhere. Already doing that part. :) -- Emma Jane Hogbin [[ 416 417 2868 ][ www.xtrinsic.com ]] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] solved Re: [PHP] sessions, IE and pop-up windows

2003-06-09 Thread Emma Jane Hogbin
buffering as I suggested before. Becuase you're controlling the output there won't be a button to press until the parent script has died. What ended up working was passing the session ID to the pop-up window manually by including it in the function (and thus the URL). emma -- Emma Jane Hogbin