in reply to Re: hashes filling up with funk
in thread hashes filling up with funk

Are you sure this piece of code is the problem, and not the code that sets the cookie? Can you log $cookie to make sure it's good before chewing on it?

Replies are listed 'Best First'.
Re: Re: Re: hashes filling up with funk
by Anonymous Monk on May 02, 2001 at 07:43 UTC
    totally, thats a good point. I'll do that. Although the code is still suspect! :) I guess that what I was really trying to ask about is, Could %00 'null' could be populated on a lower level for some reason
      Sure, it could be passed along in whatever it is that gets sent to your CookieCutter sub. Personally I would print out whatever is going in to see if it is clean - I'd wager if you have such a problem with politics and legacy code, you can have problems anywhere.

      Also, neat trick while playing with cookies.

      javascript:alert(document.cookies);

      in your browsers location bar will throw up an alert box with all your cookies for that site and their values.

      EEjack