Integrate visitor counter into website?

Hi

What's the best way to do this via HTML, since I can only insert HTML code into IONOS? And does this even work?

Greetings

(2 votes)
Loading...

Similar Posts

Subscribe
Notify of
9 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
geocacher2016
1 year ago

If you want to display the number of visitors on the page, so that visitors can see it, then maybe something like that. https://www.fahrerzaehler-kostenlos.de/webcounter/

you only have to insert HTML into your page and the javascript is loaded by this code then by the visitor counter page

HoiZusammen
1 year ago

I quickly wrote you a “small counter”. Although I didn’t test him, I hope he worked. – Just keep going around and make him fit.

class BesucherZaehler {


    private $datei;


    public function __construct($datei = 'counter.txt') {
        $this->datei = $datei;
    }


    public function zaehleBesucher() {
        $ersterBesuch = !isset($_COOKIE['visited']);
        setcookie('visited', 'yes', time() + 86400); 

        $count = file_exists($this->datei) ? (int)file_get_contents($this->datei) : 0;
        $count = $ersterBesuch ? $count + 1 : $count;
        file_put_contents($this->datei, $count);


        return $count;
    }
}


// Ausgabe 
$zaehler = new BesucherZaehler();
echo "Anzahl der Besucher: " . $zaehler->zaehleBesucher();





HoiZusammen
1 year ago

Write in the 1 line:

PHP
class visitorZaehler

and under the last line:
echo “Number of visitors: ” . $zaehler->zaehleviser();

?>

HoiZusammen
1 year ago

ok 🙂

PeterP58
1 year ago

You will find the views of the page when you log in to IONOS … there you will find an overview and statistics. Add something extra, you don’t have to!