So, also im Moment ist es immernoch wie folgt, dass die index.php unter domain.de/index.php ist.
Desweiteren editiere ich lieber nicht ide Index.php, da eigentlich der Counter über ein Custom Menü, das selber integriert wird.
Der Counter ist unter domain/counter/counter.php die count.txt ist unter domain/counter/count.txt die images unter domain/counter/images
So, dann poste ich jetzt einfach mal die counter.php
wenn ihr mir sagt, was ich ändern muss um die counter.php unter domain.de/ zu setzen, so dass ich den include Befehl benutzen kann wäre ich euch sehr dankbar.
Ich werde in roter Farbe einzeichnen, was ich denke verändert weden muss.

<?php
//path to the count.txt count storage file
$counter_file = "http://rpgxp.de/counter/count.txt oder counter/count.txt" "count.txt";
//open the file for reading
if(!($fp = fopen($counter_file , "r"))) die ("cannot open file");
//store the first 24 bytes of data from the file into $counter
$counter = (int)fread($fp, 24);
//close the file
fclose($fp);
//increment $counter by 1
$counter++;
//open the counter file for writing
$fp = fopen($counter_file , "w");
//write the new $counter value into the file
fwrite($fp, $counter);
//close the file
fclose($fp);
//number images are stored in the images directory
//and are numbered from 0.gif to 9.gif
//loop through the values of $counter and
//use the strlen function to check the length of $counter
for ($i = 0 ;$i < strlen($counter) ; $i++)
{
//the <img src> tag
$imgsrc = SubStr($counter,$i ,1);
echo "<a href=\"http://www.notathing.com/downloads.php\" target=\"_blank\"><http://rpgxp.de/counter/images> <img src=\"images/" . $imgsrc . ".gif\" border = \"0\"></a>";
}
?>