...perl and i don't know how to? bring the output into a html page. Below is the perl code. I tried some times for this output. Please give the correct alternate coding to display the output of this program into an html page. CODING::::
------------------------------------------------------
#!/usr/local/bin/perl
print "Content-Type: text/html\r\n\r\n";
open(display,"+<home_page.txt");
$show = <display>;
++$show;
seek(display,0,0);
print display $show;
close display;
print $show;
---------------------------------------
THANKS IN ADVANCE
------------------------------------------------------
#!/usr/local/bin/perl
print "Content-Type: text/html\r\n\r\n";
open(display,"+<home_page.txt");
$show = <display>;
++$show;
seek(display,0,0);
print display $show;
close display;
print $show;
---------------------------------------
THANKS IN ADVANCE