Perlwannabe
Technical User
Hello,
How to require a web page trough a cgi script?
Thanks in advance for your reply
sincerely
How to require a web page trough a cgi script?
Thanks in advance for your reply
sincerely
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.
[URL unfurl="true"]http://mydomain.com/script.cgi?http://another-site.com[/URL]
my $url = $ENV{QUERY_STRING};
[URL unfurl="true"]http://mydomain.com/script.cgi/http://another-site.com[/URL]
my $url = $ENV{PATH_INFO};
use LWP::Simple;
my $html_code = get "[URL unfurl="true"]http://another-site.com/index.html";[/URL]