Help for this page

Select Code to Download


  1. or download this
    if($acct) {
         $acct->acctid( 'pv002' );
         $acct->update;
         $acct->discard_changes; # add this
    }
    
  2. or download this
    if($acct) {
         $acct->update({acctid => 'pv002'});
    }