Help for this page

Select Code to Download


  1. or download this
    if( $expire != 1 or $expire != 2 or $expire != 3...... )
    
  2. or download this
    if(    $expire != int $expire
        or $expire < 1
    ...
    ) {
        die "Don't tamper with me!\n";
    }
    
  3. or download this
    my %test;
    @test{ 1 .. 14 } = ();
    unless( exists $test{$expire} ) {
        die "Don't tamper with me!\n";
    }