in reply to Re^4: Object Identifier? (red flags, more subs)
in thread Object Identifier?
$sql = "select status,curdate(),max_emails,last60_flag,aol_flag,open_ +flag,yahoo_flag,hour(schedule_time),minute(schedule_time),mid,redirec +t_domain,campaign_nam +e from campaign where campaign_id=$campaign_id +"; $sth = $dbh->prepare($sql); $sth->execute(); ($status,$schedule_date,$max_emails,$clast60,$aolflag,$openflag,$yahoo +_flag,$sho +ur,$smin,$old_mid,$old_dname,$cname) = $sth->fetchrow_arr +ay();
I agree with the anonymous monk concerning red flags, this code has far too many flaws to justify anything else than a complete rewrite.
Better don't tell us your website or it'll be hacked within 10 minutes.
Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery
FootballPerl is like chess, only without the dice
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Object Identifier? (red flags, more subs)
by damfer21 (Novice) on Oct 22, 2018 at 19:10 UTC |