• 04-11-2021, 16:13:26
    #1
    Arkadaşlar sitemden whatshapp ile iletişim kuruyorum ama kaç kişi iletişime geçmiş bilmiyorum bunu nasıl yapabilirim nasıl bir mantıkla yola çıkmam lazım ?
  • 04-11-2021, 16:21:55
    #2
    bitly işini görebilir
  • 04-11-2021, 18:07:48
    #3
    Developer
    counter.txt
    0
    redirect.php
    <?php
    $file = 'counter.txt';
    $phone = '905555555555';
    $fileGet = file_get_contents($file);
    file_put_contents($file, $fileGet+1);
    ?>
    <meta http-equiv="refresh" content="0;url=https://api.whatsapp.com/send/?phone=<?php echo $phone; ?>" />
    whatsapp butonunun gideceği dosya redirect.php,
    counter.txt dosyasından sayıyı takip edebilirsiniz.
  • 05-11-2021, 12:26:27
    #4
    Sitemde ilan sistemi var ve tek bir iletişim butonu yok yani herkesin butonunu ayrı saydırmak lazım.

    brown adlı üyeden alıntı: mesajı görüntüle
    counter.txt
    0
    redirect.php
    <?php
    $file = 'counter.txt';
    $phone = '905555555555';
    $fileGet = file_get_contents($file);
    file_put_contents($file, $fileGet+1);
    ?>
    <meta http-equiv="refresh" content="0;url=https://api.whatsapp.com/send/?phone=<?php echo $phone; ?>" />
    whatsapp butonunun gideceği dosya redirect.php,
    counter.txt dosyasından sayıyı takip edebilirsiniz.
  • 05-11-2021, 21:50:33
    #5
    Developer
    İlan tablonuzda örn. wp_counter adında kolon açıp ilan sayfasında benzer işlemleri yapabilirsiniz.