Re: eval and script performance ?

2008-10-16 Thread Justin Hawkins
Deviloper wrote: The last time I considered using eval is years ago. I remember that I had read an article somewhere that doing eval could lead to dramatic performance issues. I want to use eval{} to check my db-transactions. I looking for informations at perldoc eval, but there is nothing me

Re: perl warnings

2008-03-17 Thread Justin Hawkins
prit if you have a scalar byte holding 8 bits worth of data, it's not just when it holds 0x00 that that test is true - it's also when it holds 0x30 - ascii '0'. ALWAYS make your tests as specific as possible, and care about the exceptions. - Justin -- Ju

Re: Removing "+" in $ENV{QUERY_STRING}

2008-02-25 Thread Justin Hawkins
. Many people have already dealt with the problems of parsing the CGI environment variables. No need to re-invent that wheel :-) Check out the 'CGI' module. The examples in the documentation will get you started very quickly. $ perldoc CGI - Justin -- Justin Hawkins [EMAIL