Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Re: Re: Re: Re: pushing individual rows of return (DBI) into seperate arrays

by menolly (Hermit)
on Aug 28, 2003 at 21:34 UTC ( [id://287532]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Re: Re: pushing individual rows of return (DBI) into seperate arrays
in thread pushing individual rows of return (DBI) into seperate arrays

It's not additional code. It's using
if (1 == $x) { ... }
instead of
if ($x == 1) { ... }
because
if (1 = $x) { ... }
is a syntax error, but
if ($x = 1) { ... }
is not.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (4)
As of 2024-04-24 06:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found