in reply to Re: Re: Can I Create A Persistent Flock Under CGI.pm?
in thread Can I Create A Persistent Flock Under CGI.pm?
path_info() =~ /^(\w+)/; my $session_id = $1; unless ($session_id){ # Session doesn't exist so they are new user. $session_id = makesessionID(); # Create file and display first form below }else{ unless (-e $my_path.$session_id){ # Something is funny if the session doesn't exist. # Probably should die } # Read in session data from file. # Form two (3,4,5 whatever) below. }
|
|---|