RE: [PHP] session_register vs. $_SESSION superglobal

2004-03-24 Thread Ford, Mike [LSS]
> -Original Message- > From: Kim L. Laage [mailto:[EMAIL PROTECTED] > Sent: 24 March 2004 10:52 > > Once again, thanks for the replies... > > But I'm afraid I'm not getting this right... I've tested with > the various > versions of $_SESSION syntax which I've been recommended by > the

Re: [PHP] session_register vs. $_SESSION superglobal

2004-03-24 Thread Kim L. Laage
Once again, thanks for the replies... But I'm afraid I'm not getting this right... I've tested with the various versions of $_SESSION syntax which I've been recommended by the people on this group. i.e.: $_SESSION['s_user'] = $_POST['s_user']; $_SESSION['s_pass'] = $_POST['s_pass']; or $_SESSION

Re: [PHP] RE:[PHP] session_register vs. $_SESSION superglobal

2004-03-23 Thread Pushpinder Singh
I am using PHP with register_globals ON... since I don't have access to the host environment. The way I use sessions is: session_start(); do some database connection and checking here. if (condition is met) { $_SESSION['valid_user'] = $_POST['login']; } Is th

Re: [PHP] session_register vs. $_SESSION superglobal

2004-03-23 Thread Justin Patrin
Kim L. Laage wrote: (This msg. may arrive twice, with two different senders, I've had a little trouble with the news server) Hi, thanks for your reply. first $_SESSION works like this: session_start(); $_session[user]=$_POST[user];//if using register_globals=off $_SESSION[user]=$user;//if regis

[PHP] Re: RE:[PHP] session_register vs. $_SESSION superglobal

2004-03-23 Thread Kim L. Laage
(This msg. may arrive twice, with two different senders, I've had a little trouble with the news server) Hi, thanks for your reply. > first $_SESSION works like this: > > session_start(); > $_session[user]=$_POST[user];//if using register_globals=off > $_SESSION[user]=$user;//if register_globals=

[PHP] Re: RE:[PHP] session_register vs. $_SESSION superglobal

2004-03-23 Thread Scott Fletcher
> $_session[user]=$_POST[user];//if using register_globals=off Actually, $_SESSION with a capital letters does work... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] RE:[PHP] session_register vs. $_SESSION superglobal

2004-03-23 Thread Andy B
[snip] session_start(); $_SESSION = "user"; $_SESSION = "pass"; This doesn't work of course, but as I said I'm unsure of how the $_SESSION superglobal is used, and the info I've found about it didn't shed much light... I hope I'm just tired today 8-) Another semi-related question is, is it common

Re: [PHP] session_register() twice?

2002-04-26 Thread Javier
I've got the index.php page that checks if there's a session created. If it is not, it creates a new one. I print the session_id; Then I go through a link to a login.php page there I print the session_id and its a different one. What could be the problem? Sascha Schumann wrote: > On Fri, 26 Ap

Re: [PHP] session_register() twice?

2002-04-26 Thread Sascha Schumann
On Fri, 26 Apr 2002, Javier wrote: > What happens if I call session_start() twice? > Does it creates another session? It does nothing. if (PS(session_status) != php_session_none) return; - Sascha Experience IRCG http://schumann.cx/

RE: [PHP] session_register() - Netscape workaround?

2001-05-07 Thread Johnson, Kirk
-Original Message- > From: Jennifer [mailto:[EMAIL PROTECTED]] > Subject: Re: [PHP] session_register() - Netscape workaround? > I thought of a workaraound for Netscape and would like some > feedback on how to do it and whether it is a good idea. > > I manually edite

Re: [PHP] session_register()

2001-05-05 Thread Alexander Skwar
So sprach Matthew Luchak am Fri, May 04, 2001 at 11:57:50AM -0400: > I would be very interested in hearing of any developments with session > anomilies.. Although you've posted the question twice in the message, I still think you've forgot one minor point - your question! :) Alexander Skwar --

Re: [PHP] session_register() - Netscape workaround?

2001-05-05 Thread Jennifer
Jennifer wrote: > I thought of a workaraound for Netscape and would like some > feedback on how to do it and whether it is a good idea. > > I manually edited the session file and Netscape was able to read > the variable on subsequent pages. It just can't seem to write > it. > > So I thought,

Re: [PHP] session_register() - Netscape workaround?

2001-05-05 Thread Jennifer
"Johnson, Kirk" wrote: > > > -Original Message- > > From: Jennifer [mailto:[EMAIL PROTECTED]] > > Subject: Re: [PHP] session_register() > > > > 1. What browser are you using? I, and others, have seen > > erratic results with > >

RE: [PHP] session_register()

2001-05-04 Thread Matthew Luchak
I would be very interested in hearing of any developments with session anomilies.. Netscape® Communicator 4.76 M$2000 PHP Version 4.0.4pl1 System Windows NT 5.0 build 2195 Server API CGI ZEND_DEBUG disabled Thread Safety enabled "works" using: Hello visitor, you have seen this page ti

RE: [PHP] session_register()

2001-05-04 Thread Johnson, Kirk
> -Original Message- > From: Jennifer [mailto:[EMAIL PROTECTED]] > Subject: Re: [PHP] session_register() > > 1. What browser are you using? I, and others, have seen > erratic results with > > sessions using Netscape 4.x. If this is your browser, try > your co

Re: [PHP] session_register()

2001-05-03 Thread Jennifer
This is bad, bad, bad. I tried using another browser as you suggested (since I was using Netscape 4.7) and the session_register worked. I still got different results than you though. Read throughout for more comments. "Johnson, Kirk" wrote: > > Jennifer, there are at least two of us totally c

Re: [PHP] session_register()

2001-05-03 Thread Jon Peccarelli
ight > be the trouble, since turning register_globals off does not reproduce your > results. > > I am stumped. > > Kirk > > > -Original Message- > > From: Jennifer [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, May 02, 2001 11:55 PM > > To: [EMAIL P

RE: [PHP] session_register()

2001-05-03 Thread Johnson, Kirk
er [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 02, 2001 11:55 PM > To: [EMAIL PROTECTED] > Subject: Re: [PHP] session_register() > > > "Johnson, Kirk" wrote: > > > > > -Original Message- > > > From: Jennifer [mailto:[EMAIL PROTECTED]

Re: [PHP] session_register()

2001-05-02 Thread Jennifer
Warren Vail wrote: > > When the session_register is executed the session contents are partially > updated. > Your first test actually executed the session_register that posted the > variable with 0 string length, because the variable had not yet been > initialized (the bad return is the only in

RE: [PHP] session_register()

2001-05-02 Thread Warren Vail
: Re: [PHP] session_register() "Johnson, Kirk" wrote: > > > -Original Message- > > From: Jennifer [mailto:[EMAIL PROTECTED]] > > Do you need to register a variable with the session before you > > assign it a value? > > Not in my experience. >

Re: [PHP] session_register()

2001-05-02 Thread Jennifer
"Johnson, Kirk" wrote: > > > -Original Message- > > From: Jennifer [mailto:[EMAIL PROTECTED]] > > Do you need to register a variable with the session before you > > assign it a value? > > Not in my experience. > > > session_register should return true if the variable was > > successfull

RE: [PHP] session_register()

2001-05-02 Thread Johnson, Kirk
> -Original Message- > From: Jennifer [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 02, 2001 2:51 AM > To: [EMAIL PROTECTED] > Subject: [PHP] session_register() > > Do you need to register a variable with the session before you > assign it a value? Not in my experience. > session_

Re: [PHP] session_register()

2001-05-02 Thread Richard Verstegen
Maybe this example will help you: Program 1: Program 2: Richard "Jennifer" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have been racking my brain with this for hours and I am not > getting anywhere. > > session_register doesn't seem to be registe

Re: [PHP] session_register()

2001-04-20 Thread Martín Marqués
On Vie 20 Abr 2001 18:15, Wade wrote: > I am registering a number of variables. Can I combine them into one > session_register, such as session_register("one", "two" ... "n")? Well, the manuals say YES! Saludos... :-) -- El mejor sistema operativo es aquel que te da de comer. Cuida tu dieta. -

RE: [PHP] session_register()

2001-04-20 Thread Johnson, Kirk
I do. Kirk > -Original Message- > From: Wade [mailto:[EMAIL PROTECTED]] > Sent: Friday, April 20, 2001 9:16 AM > To: [EMAIL PROTECTED] > Subject: [PHP] session_register() > > > I am registering a number of variables. Can I combine them into one > session_register, such as session_regis

RE: [PHP] session_register in function

2001-02-25 Thread PHPBeginner.com
you have to have the variable you register (in both ways) global. so no matter how you call the function the variable must be defined global. mailto:[EMAIL PROTECTED]] Sent: Sunday, February 25, 2001 1:16 AM To: PHP List Subject: [PHP] session_register in function The variable I register befor

Re: [PHP] session_register in function

2001-02-24 Thread Jeff Lacy
I had this same exact problem just today. It all stems from the variable namespace, I think A similar code 'snippet' is shown below. I just made it up, but I think it illustrates my point. Good luck with whatever you are doing, Jeff Lacy ""Jon Rosenberg"" <[EMAIL PROTECTED]> wrote in

Re: [PHP] session_register()

2001-02-15 Thread Richard Lynch
> session_start(); > session_register('email'); > $session = session_id(); > $userid = '$user'; > $sql = "SELECT * > FROM users > WHERE user='$user' and pass='$pass'"; > if ($num == 1) { > include "quote2.php"; > } Unless quote2.php sets $email, you've never set it to anything. You'v