UltraLow Frequencies
|
|
Λίστα ενημέρωσης (Εκλεισε) |
Τελευταία άσχημα νέα για το "ULF Project"
Λόγω προβλημάτων ανεβασμένου θορύβου που προέρχεται από την υψηλή τάση και τον προαστιακό σιδηρόδρομο, δεν είναι δυνατή η λήψη για το προσεχές διάστημα, μέχρι τουλάχιστον να βρεθεί λύση για απομεμακρυσμένη λειτουργία σε ησυχότερη περιοχή. Η σελίδα θα μείνει σε λειτουργία για όποιον άλλον ενδιαφέρεται για πειραματισμό, η λίστα ανακοινώσεων θα κλείσει, και ότι άλλο αλλάξει στο μέλλον θα ανακοινωθεί σε αυτή την σελίδα.
Ευχαριστούμε όσους μας παρακολούθησαν μέχρι τώρα στις ανακοινώσεις μας και ελπίζουμε να τα ξαναπούμε σύντομα μαζί σας.
#Abax Hit Counter v1.0, Copyright 2001 By Nathan Dickman, visit http://www.NathanDickman.com/ #This script may be freely distributed providing all copyright headers are kept intact //Abax Hit Counter configuration// $datafile="indxdata.dat"; //filename for counter datafile $counterstyle = "image"; //enter text for text,image for images, or invisible for none $textcountlength = 4; //length of counter in digits if using text option $font = "Arial, Helvetica, sans-serif"; //font face style if using text counter $fontsize = "2"; //font size if using text counter $fontcolour = "#999999"; //font colour use html colour codes $imagedirectory = "im/"; //directory or http location to images NOTE: use trailing slash $imagesext = ".gif"; //file extension for images e.g. .gif .jpg .png $initialvalue = 1; //MAIN CODE// if (!file_exists($datafile)) { $file = fopen($datafile,"w+"); fwrite ($file,$initialvalue); fclose ($file); } else { $file = fopen($datafile,"r+"); $hitcount = fread($file,filesize($datafile)); fclose ($file); }; $hitcount++; $file = fopen($datafile,"w+"); fwrite ($file,$hitcount); if ($counterstyle != "invisible") { if ($counterstyle == "text") { echo "" .sprintf("%0"."$textcountlength"."d",$hitcount).""; } else { $longstr = strlen($hitcount); for ($x=0; $x < $longstr; $x++) { $image = substr($hitcount,$x,1); echo ""; } } } ?>