in reply to Test break, but still doing
Forgive me if I've completely misunderstood your question, but why not just shove the next into the if-block?:
if ($sth->rows >= 1) { my $sth = $dbh->prepare("UPDATE artists SET email=? WHERE alias=?" +); $sth->execute($email[$artistkey], $artist_alias[$artistkey]); next; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Test break, but still doing
by Coplan (Pilgrim) on Feb 21, 2001 at 11:32 UTC | |
by danger (Priest) on Feb 21, 2001 at 11:37 UTC | |
by Tyke (Pilgrim) on Feb 21, 2001 at 13:26 UTC |