Microsoft
Software
Hardware
Network
Question : cgi equivalent to the php code
Hello Experts,
I have a small php script which actually increment a counter on every hit on the page, becuase it is a php script I cannot include in a .cgi page(perl).
Please can someone help in making a .cgi script equivalent to the below php
$count_my_page = ("hitcounter.txt");
$hits = file($count_my_page);
$hits[0] ++;
$fp = fopen($count_my_page , "w");
fputs($fp , "$hits[0]");
fclose($fp);
echo $hits[0];
?>
your help is much appreciated.
thanks
sam
Answer : cgi equivalent to the php code
#!/usr/bin/perl
@ARGV="hitcounter.txt";
$^I=".bak";
while( <> ){
$hits = ++$_;
print;
}
print "Content-Type: text/plain
$hits
";
Random Solutions
How to optimize this scenario? Four update statements in a loop of more than 67000 records
Sharepoint Reporting Services Error
Exchange Mail store fails to stay mounted.
IIS role has a red X
div variable height and jscript
Prevent ASP:Timer from causing a page refresh on each on tick EVENT
Configure OWA for exchange 2003 on SBS as the Root of a new website
Converting an old Win3.1 Cardfile file
configure failover web sites
print using dbms_output.put_line while triggers get executed