#!/usr/bin/perl print "Content-type: text/html\r\n\r\n"; $file = "/var/www/cgi-bin/counts/count3.txt"; $count = 0; if ( -f $file ) { open (FIL, "<$file") || die("Could not open file $file!\n"); $count = ; close (FIL); } open (FIL, ">$file") || die("Count not create file $file!\n"); $count++; print FIL "$count\n"; close (FIL); print "$count\n"; exit; # eof