منتدى خدمات كويتي
هل تريد التفاعل مع هذه المساهمة؟ كل ما عليك هو إنشاء حساب جديد ببضع خطوات أو تسجيل الدخول للمتابعة.

منتدى خدمات كويتي


 
الرئيسيةالمدونهالمنشوراتأحدث الصورالأعضاءس .و .جالتسجيلدخولبحـث

 

 كيفية إضافة عداد الزوار إلى موقع الويب في PHP Visitor Counter

اذهب الى الأسفل 
كاتب الموضوعرسالة
Admin
المدير العام
المدير العام
Admin


وطني : الكويت
تاريخ التسجيل : 20/07/2022
عدد المشاركات : 446
السٌّمعَة : 0
الجنس : ذكر
نقاط : 1105
العمر : 94
المزاج : طبيعي
العمل/الترفيه : كل شي

كيفية إضافة عداد الزوار إلى موقع الويب في PHP Visitor Counter Empty
مُساهمةموضوع: كيفية إضافة عداد الزوار إلى موقع الويب في PHP Visitor Counter   كيفية إضافة عداد الزوار إلى موقع الويب في PHP Visitor Counter Icon_minitimeالأربعاء نوفمبر 29, 2023 10:14 am

سنحتاج إلى ملفين. واحد للنص والآخر لتخزين الزيارات. هنا لقطة من الدليل الخاص بي. المشاركة، حتى تحصل على الأشياء بسرعة.
Step 1: Create a file named counter.php. Edit it with Notepad/Notepad ++

اقتباس :
$handle = fopen("counter.txt", "r");
if(!$handle) {
echo "could not open the file";
} else {
$counter =(int )fread($handle,20);
fclose($handle);
$counter++;
echo"Number of visitors to this page so far: ". $counter . "" ;
$handle = fopen("counter.txt", "w" );

fwrite($handle,$counter);
fclose ($handle);
}
Save the file and upload it to the directory.

كيفية إضافة عداد الزوار إلى موقع الويب في PHP Visitor Counter Directory-Shot
Step 2: Create another file named counter.txt. Upload this file to the directory. You can put any number in this file it will echo as a log where you want to show the page hits.

Step 3: You see the index.php file to that directory in the screenshot above that the folder where I am going to include the counter script. So we can see the “Number of visitors to that page.”

wprocket-728x98_Black

Visitor-Counter-to-Pricing-Table-Page
I wanted to add the visitor counter at the footer. So I wrote the below snippet under of all elements.

اقتباس :
<div class="visitor-count"> <?php include "counter.php"; ?> </div>

How to Display Post Views in WordPress


https://rainastudio.com/add-visitor-counter-to-wordpress/
https://wordpress.org/plugins/post-views-counter/#description
مصدر
الرجوع الى أعلى الصفحة اذهب الى الأسفل
https://hayef5.yoo7.com
 
كيفية إضافة عداد الزوار إلى موقع الويب في PHP Visitor Counter
الرجوع الى أعلى الصفحة 
صفحة 1 من اصل 1
 مواضيع مماثلة
-
» How to Add Comment Counter On Each Post كيفية إضافة عداد تعليق في كل منشور
» إحصائيات حركة الزوار في الوقت الحقيقي Visitor Traffic Real Time Statistics
» هل قاعده البيانات تقبل الويب
» كل ما يخص All thing about Blogger AdSense الربح من جوجل أدسنس
» جافا كيفية إضافة أداة أخبار Google إلى Blogger

صلاحيات هذا المنتدى:لاتستطيع الرد على المواضيع في هذا المنتدى
منتدى خدمات كويتي :: خدمات برمجه وتطوير development services-
انتقل الى: