Help for this page

Select Code to Download


  1. or download this
    sub validate_owner{
    
    ...
                print "Owner ID is $owner\n" if ($debug);
    
                validate_owner($owner);
    
  2. or download this
    sub validate_owner{
    
    ...
            validate_owner($owner);
    
        }
    
  3. or download this
    sub validate_owner{
    
    ...
            return 1;
            }