from within the body of the .htm page use this command <!--THIS LINE IS CORRECT--> <!--#exec cgi="/cgi-bin/counter-.cgi"--> ################ This is the .cgi program #!/usr/bin/perl -w use strict; use diagnostics; my $count; $count = "12345"; print "Content-type: text/html\n\n"; print "<font color=\"blue\">-(</font><font color=\"green\">$count</font><font color=\"blue\">)-</font>\n"; exit; ################## this works.. now to build up the rest of the program. thanks again lou
