in reply to Help, how do I print out to an html file, not the .pl page
Hope that clears up your question a little bit...if not please update your question to be a bit more specific.if ($option eq "index") { open (INDEX, ">filename.html"); print INDEX "print the HTML here"; close INDEX; } elsif ($option eq "menu") { open (MENU, ">filename2.html"); print MENU "Print the HTML here"; close MENU; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Help, how do I print out to an html file, not the .pl page
by dawnamarr (Novice) on Apr 17, 2001 at 19:41 UTC | |
by astanley (Beadle) on Apr 17, 2001 at 19:52 UTC | |
by dawnamarr (Novice) on Apr 17, 2001 at 20:34 UTC | |
by dawnamarr (Novice) on Apr 17, 2001 at 20:37 UTC |