[PHP] session_register()

2001-02-12 Thread Peter Houchin
Hiya Could some one please give me a step in the right direction, I've created a simple login script that checks the data base against the user name and password that the user has inputted in aform, i want to have stored in the session their user name and password, as well as their email. I can

[PHP] session_register()

2001-04-20 Thread Wade
I am registering a number of variables. Can I combine them into one session_register, such as session_register("one", "two" ... "n")? Thanks Wade -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To c

[PHP] Session_register

2001-04-20 Thread Alok K. Dhir
Is there a down side to registering a var with the session more than once? I.e. which would be preferred and why in a frequently accessed page in a web application: session_register('var'); or If (!session_is_registered('var') session_register('var'); FWIW - either wa

[PHP] session_register()

2001-05-02 Thread Jennifer
I have been racking my brain with this for hours and I am not getting anywhere. session_register doesn't seem to be registering my variables. Several questions to see if I am even on the right track. Do you need to register a variable with the session before you assign it a value? session_re

[PHP] session_register() twice?

2002-04-26 Thread Javier
What happens if I call session_start() twice? Does it creates another session? Cause something odd is going on with this simple script. if(!SesionActiva()){ -It checkes wether there an active session SesionCrear(); - It creates the session } /*SesionActivar();*/

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

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 >

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-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-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

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 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
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-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-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 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-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-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

[PHP] session_register() behavior

2001-05-04 Thread Jon Peccarelli
When I was running PHP 4.0.4 on Apache 1.3/RH Linux 6.1, the following code worked perfect: file1.php session_start(); session_register("var1"); $var1 = "a value"; file2.php session_start(); session_register("var2"); $var2 = "some value"; file3.php session_start();

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() 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() 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

[PHP] session_register in function

2001-02-24 Thread Jon Rosenberg
The variable I register before the function becomes available in the session to other pages...the variable I register inside the function are not accessible in the session to ohter pages. Is this normal? How can I work around this? Thanks! PHP4.0.4pl1 on Linux. sample code: -- PHP Genera

[PHP] session_register and class variables

2002-01-21 Thread Bradley Goldsmith
Hi All, I am having problems with a class and session_register(). I define a class (parital implimentation below) with some variables and call session_register at the top of each page. After I change pages, I end up with all three variables containing the data from szAff

[PHP] session_register in function - addendum

2001-02-24 Thread Jon Rosenberg
The code snippet below is from a file that is the post action of a login form the login form also has session_start(); - Original Message - From: "Jon Rosenberg" <[EMAIL PROTECTED]> To: "PHP List" <[EMAIL PROTECTED]> Sent: Saturday, February

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 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

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() - 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-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