How do you save a variable global in a StartupHook so that
you can reference it in a PreHandlerHook.

Here is a simple example:

StartupHook  sub {\
    $variable = 1;\
}

<Client xxx.xxx.xxx.xxx>
PreHandlerHook sub {\
     if ($variable = 1) { do something }\
}
</Client>

Problem is, that whenever I try to reference the $variable in the
PreHandlerHook it does not remember it from the
startup hook.   Any ideas?


===
Archive at http://www.starport.net/~radiator/
Announcements on [EMAIL PROTECTED]
To unsubscribe, email '[EMAIL PROTECTED]' with
'unsubscribe radiator' in the body of the message.

Reply via email to