Your own php online counter for website
This is the script for online counter .It can be used in your website to display online visitors in your site. (use with your own css to have a better look) *How to make ? Step 1 ==> In your php site make a database. Note the username,password and the database name of the created database. Step 2 ==> Now create two files sql.sql and user_online.php in your site using ftp. Step 3 ==> Copy and paste below content to user_online.php <? /* JOIN US https://m.facebook.com/groups/427625107334527 Dedicated to Our New Member Arun Raj and Okechukwu Friday */ session_start(); $session=session_id(); $time=time(); $time_check=$time-600; //SET TIME 10 Minute $host="paste mysql server name here"; //My sql Host name obtained from the host $username="paste username of database"; // Mysql username $password="paste password of database"; // Mysql password $db_name="paste name of database"; // Database name $tbl_name=...