Help for this page

Select Code to Download


  1. or download this
    my $fn = make_filename($user); # or whatever
    $fn = '/path/to/default.jpg' unless -f $fn;
    print link_pic($fn);
    
  2. or download this
    if ( -f $fn ) {
        print link_pic($fn);
    }