Help for this page

Select Code to Download


  1. or download this
    $img = shift @imgs;
    $link = shift @urls;
    
    ...
    
    push @imgs, $img;
    push @urls, $link;
    
  2. or download this
    while ($c = <DAT>) {
        ($id,$image,$url)=split(/\|/,$c);
    
    ...
        }
    }
    close DAT;