Skip to content
View in the app

A better way to browse. Learn more.

Lunarsoft Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Php Hit Counter

Featured Replies

Not the best, but a little something i made for you all :love:

First create your a text file named "count.txt" and put the number 0 in it, then save it.

Upload it and chmod is at 0666

Next open a text editor, and create a file called count.php and put the following code in:

<?php

// Copyright (c) Josh Gould 

$COUNT_FILE = "count.txt"; // File DB that holds ur amount of hits 

if (file_exists($COUNT_FILE)) { 

 ? $fp = fopen("$COUNT_FILE", "r+"); 

 ? flock($fp, 1); ?

 ? $count = fgets($fp, 4096); ?

 ? $count += 1; ?// Adds one count to file for hits 

 ? fseek($fp,0); ?

 ? fputs($fp, $count); ?

 ? flock($fp, 3); ?

 ? fclose($fp); ?

 ? echo "Hits: <b>"; 

 ? include "$COUNT_FILE"; 

 ? echo "</b><!-- hit counter by Josh Gould at http://scripts.joshrcc.com -->"; 

} else { 

 ? echo "Can't find file, check '\$file'<BR>"; // Error message 

} 

?>
Then when ever you want to count people's hits, just use this code:
<?php

include 'count.php';

?>

  • Author

its very simple, however you will have to use php files instead of html files.

Example on how to include files using php

<?php

include "files.html";

?>

When you go to include the files, it can be any type of file, but where you put the script above has to be in a php file for it to work.

  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.