<?php

$COUNT_FILE = "count_data.txt";
/******************************************************************************/

if (file_exists($COUNT_FILE)) {
           // En: Open, read, increment, save and close file.
           // Fr: Ouvre, lit, incrémente, sauve et ferme le fichier.
           $fp = fopen("$COUNT_FILE", "r+");
           flock($fp, 1);
           $count = fgets($fp, 4096);
           $count += 1;
           fseek($fp,0);
           fputs($fp,
	   $count);
           flock($fp, 3);
           fclose($fp);
} else {
           echo "Can't find file, check '\$file' var...<BR>";
}
?>

<HTML>
 <HEAD>
 <TITLE>Contents</TITLE></HEAD>
 <BODY BACKGROUND="images/wochter.jpg">
 <P>
<STYLE TYPE="text/css">   
   <!--
   body  {
   	font-family : Arial;
   	font-size : 12px;
   	color : #C0C0C0;
   	background-color : #000000;
   	background-repeat : no-repeat;
   	background-attachement : fixed;
   	background-position : top center;
   }
   
	A:link	 	{font-family : Arial;font-size : 13px;
			color : #EFB000;text-decoration : none;}
	A:visited 	{font-family : Arial;font-size : 13px;
			color : #EFB000;text-decoration : none;}
	A:hover		{color : red;}
	table		{font-size : 13px;color : #C0C0C0;}
   -->
</STYLE>

<P ALIGN=CENTER><BR><BR><BR><BR><BR><BR><BR><BR><BR>
<CENTER><FONT SIZE=4 COLOR=#007100>Papier znesie vsetko. A co Web? </FONT></CENTER>
<P ALIGN=CENTER>
<BR><BR><BR><BR>
<TABLE WIDTH=80%
   CELLPADDING=2 CELLSPACING=0 BORDER=0>

   <TR>
    <TD WIDTH=4% VALIGN=TOP><P>
    <IMG SRC="images/arrow.jpg" ALT="arrrow" ALIGN=BOTTOM WIDTH=20 HEIGHT=20 BORDER=0></TD>
    <TD WIDTH=29% VALIGN=TOP><P>
    <A HREF="geo/index.html">Piestany</A></TD>
    <TD WIDTH=67% VALIGN=TOP><P>
   Prehlad geologickych a geomorfologickych pomerov sirsieho okolia Piestan</TD></TR>

   <TR>
    <TD WIDTH=4% VALIGN=TOP><P>
    <IMG SRC="images/arrow.jpg" ALT="arrrow" ALIGN=BOTTOM WIDTH=20 HEIGHT=20 BORDER=0></TD>
    <TD WIDTH=29% VALIGN=TOP><P>
    <A HREF="romania/">Romania</A>
    </TD>
    <TD WIDTH=67% VALIGN=TOP><P>
   Par zazitkov a fotiek z potuliek po Rumunsku</TD></TR>

   <TR>
    <TD WIDTH=4% VALIGN=TOP><P>
    <IMG SRC="images/arrow.jpg" ALT="arrrow" ALIGN=BOTTOM WIDTH=20 HEIGHT=20 BORDER=0></TD>
    <TD WIDTH=29% VALIGN=CENTER><P>
    <A HREF="about.html">O tychto strankach...</A>
    </TD>
    <TD WIDTH=67% VALIGN=TOP>
    <P>Ak to niekoho zaujima...</TD></TR>
  </TABLE>
 </P><P ALIGN=CENTER>

Counter: 
<?php
$myfile = fopen("count_data.txt", "r") or die("Unable to open file!");
echo fread($myfile,filesize("count_data.txt"));
fclose($myfile);
?>
</BODY></HTML>
