"."$which"."! Today is $wday";
echo " It is: $hourx".":"."$min"." "."$amorpm";
echo " ";
echo "and is: $month"."$day"."$year";
echo " You are Visitor: $tcounter";
echo " Makeing a total count of: $counter - Since October 2002";
// Changes the value of the counter in the count.txt file
$fp = fopen($location_counter,"w");
fputs($fp, $counter);
fclose($fp);
// Adds one more ip address to the end of the ip.txt file
$date = date("(g i: A: l, jS M Y)");
$fp = fopen($location_ip,"a");
fputs($fp, "Date: $date -:::- IP: $REMOTE_ADDR \n");
fclose($fp);
?>