On Monday 26 February 2001 10:26, Securez wrote:

> <?php
> session_start();
>
> if( !isset( $c)) {
>     session_register("c");
>     $c = 1;
> }
>
> echo $c . "<br>";
>
> ?>
> <a href="index.php">reload</A>
>
> this example that works fine in other system with the same
> configuration, don't work in my machine, everytime he say 1.

Well, you never change $c, so it of course always says 1

-- 
Christian Reiniger
LGDC Webmaster (http://sunsite.dk/lgdc/)

...10001000110101011010101101011110111010113...????

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to