Help for this page

Select Code to Download


  1. or download this
    my $ContactID = somecontactid;
    my @rows=$db->select("select HTMLCheck from Contact where ContactID=$C
    +ontactID");
    my $HTMLCheck = $rows[1]->{HTMLCheck};
    # do something with $HTMLCheck
    
  2. or download this
    my $HTMLCheck = $db->select("select HTMLCheck from Contact where Conta
    +ctID=$ContactID")[1]->{HTMLCheck};