in reply to Script dieing after arbitrary time
There seems to be an error in you sample code at the point below:
foreach my $name (@names) { if(!name already_in_database()) {
Shouldn't name -> $name ? Additionally, shouldn't it read more like:
if(! already_in_database($name))
Good luck with that!
|
|---|