Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: open a file and print out to webbrowser

by Sidhekin (Priest)
on Oct 30, 2007 at 19:15 UTC ( [id://648089]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $sitelist_file="<c:\supportweb\content\sitelist.txt"
    print $sitelist_file;
    __END__
    <c:supportwebntentsitelist.txt
    
  2. or download this
    my $sitelist_file='<c:\supportweb\content\sitelist.txt';
    print $sitelist_file;
    __END__
    <c:\supportweb\content\sitelist.txt
    
  3. or download this
    open DATA, $sitelist_file or die "Cannot open '$sitelist_file': '$!'";
    
  4. or download this
    for my $line (@lines){
      $response->write($line);
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://648089]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (7)
As of 2024-04-23 21:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found