Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Re: PayPal Advice Sought

by epoptai (Curate)
on Jul 07, 2001 at 03:37 UTC ( [id://94653]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $value    =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg; # carg
    +o
    
    $todecode =~ s/%([0-9a-fA-F]{2})/pack("c",hex($1))/ge;          # CGI
    
  2. or download this
    # unescape URL-encoded data
    sub unescape {
    ...
        $todecode =~ s/%([0-9a-fA-F]{2})/pack("c",hex($1))/ge;
        return $todecode;
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://94653]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (4)
As of 2024-04-25 15:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found