in reply to Re^2: how can I execute an html file from Perl
in thread how can I execute an html file from Perl

Why not use a link ?

print "Content-Type: text/html\n\n"; print qq!<html> <body><h3>$out_file created.... <a href="/shhabcam/LOGS/user_$assignment.html">here</a></h3> </body></html>\n!;
poj

Replies are listed 'Best First'.
Re^4: how can I execute an html file from Perl
by Anonymous Monk on Oct 30, 2017 at 12:47 UTC
    of course! Works great....thanks!