http://www.perlmonks.org?node_id=560719


in reply to Re^2: DBI giving user input by place holders
in thread DBI giving user input by place holders

Assuming you want the same SQL executed, but with different values, you'll need to issue the $sth->execute(...) multiple times. You can do this either by manually repeating that line in your code, or put the line inside a loop of some sort.

Hope that helps.