Help for this page

Select Code to Download


  1. or download this
    if (-e "data/$file.data") || (-e "data/$otherfile.data") 
    {
    ...
    else {
        print "<BR>Hohum neither of the files exist";
    }
    
  2. or download this
    if (-e "data/$file.data") or (-e "data/$otherfile.data") 
    {
    ...
    else {
        print "<BR>Hohum neither of the files exist";
    }