kaancho12
Technical User
- Feb 22, 2005
- 191
is there a method to get the content of a file?
thanks
thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
undef $/;
open FH, "yourfile.html";
$file = <FH>;
close FH;
open FH, "yourfile.html";
foreach(<FH>){
push (@file,$_);
}
close FH;