<?php

$fd = fopen("counter-start.dat","r+");

$startcount = fgets($fd,10);

if (! $startcount)

$startcount=0;

rewind($fd);

$startcount++;

fwrite ($fd, $startcount);

fclose ($fd);

?>

<html>

<head>

<link rel=stylesheet type="text/css" href="main.css">

<title>MTB Download Page</title>

</head>

<body>

<div id=mainframe>

  <div id=head>

  MergeToolBox (MTB) Download Page

  </div>

  <div id=inhalt>

       <div id=uebersicht>

       <h4>Please select your language!</h4><a href=index-en.php>english</a>

       <br>

       <h4>Bitte w&auml;hlen Sie ihre Sprache!</h4><a href=index-de.php>deutsch</a>

</body>

</html>



