Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Need help writing a script that interacts with a MySQL DB!

by tinita (Parson)
on Sep 30, 2012 at 10:54 UTC ( [id://996495]=note: print w/replies, xml ) Need Help??


in reply to Need help writing a script that interacts with a MySQL DB!

my $query = "SELECT * FROM People where Name = '$console'";
Please learn to use placeholders as early as possible and get used to it. they make your database statements more secure and the code is in most cases cleaner to read. You don't need to care about quoting the value.
see also http://bobby-tables.com/
my $query = "SELECT * FROM People where Name = ?"; # later: $query1->execute($console);

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (4)
As of 2024-03-28 23:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found