Help for this page

Select Code to Download


  1. or download this
    if (!defined $id) {
        # Deal with id
    ...
    else {
        # Deal with not undef id
    }
    
  2. or download this
    if (defined $id) {
        # Deal with a defined id
    ...
    else {
        # Deal with an undefined id
    }