How to execute this PHP Script?
تحتاج إلى نسخ الملف ViewsCount.php إلى خادم PHP. يمكنك استخدام برنامج wampserver الذي يوفر بيئة متكاملة لتشغيل ملفات PHP مع دعم قاعدة بيانات MySQL.
بعد ذلك ، افتح ملف PHP هذا على المستعرض عبر URL مضيف محلي. عادة HTTP: //localhost/ViewsCount.php
في البداية ، سيعرض متصفحك النتيجة كطرق عرض = 1
قم بتحديث صفحة الويب للتحقق من الزيادة في طرق عرض الصفحة
You need to copy the file ViewsCount.php to a PHP server. You can use wampserver software which provides an integrated environment to run PHP files along with MySQL database support.
Next, open this PHP file on the browser via localhost URL. Usually http://localhost/ViewsCount.php
Initially, your browser will display the result as views=1
Refresh the web page to check the increase in page views.
على كل الاحوال هذا المصدر
https://krazytech.com/programs/php-program-to-find-number-of-page-views
كود countReset.php
وكود ViewsCount.php
وسلامتكم
تحتاج إلى نسخ الملف ViewsCount.php إلى خادم PHP. يمكنك استخدام برنامج wampserver الذي يوفر بيئة متكاملة لتشغيل ملفات PHP مع دعم قاعدة بيانات MySQL.
بعد ذلك ، افتح ملف PHP هذا على المستعرض عبر URL مضيف محلي. عادة HTTP: //localhost/ViewsCount.php
في البداية ، سيعرض متصفحك النتيجة كطرق عرض = 1
قم بتحديث صفحة الويب للتحقق من الزيادة في طرق عرض الصفحة
You need to copy the file ViewsCount.php to a PHP server. You can use wampserver software which provides an integrated environment to run PHP files along with MySQL database support.
Next, open this PHP file on the browser via localhost URL. Usually http://localhost/ViewsCount.php
Initially, your browser will display the result as views=1
Refresh the web page to check the increase in page views.
على كل الاحوال هذا المصدر
https://krazytech.com/programs/php-program-to-find-number-of-page-views
كود countReset.php
<?php
session_start();
$views = $_SESSION['views']; //retrieve the session variable
unset($_SESSION['views']); //to remove session variable
session_destroy(); //destroy the session
?>
وكود ViewsCount.php
<?php
session_start();
if(isset($_SESSION['views']))
$_SESSION['views'] = $_SESSION['views']+1;
else
$_SESSION['views']=1;
echo"views = ".$_SESSION['views'];
?>
Output:
views = 1
Refresh the browser
views = 2
وسلامتكم