Hello, I'm novice in using sessions and therefore I need some help.
<?
    session_start();
    session_register('pocet');
    $count++;
    echo $count;
    session_destroy();
?>
<a href="test.php?<?php echo(SID)?>">link</a>

and when i click on link always I have in $count value 1 but I need
value 2,3,....
how to do it ?

thanks

roman

.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to