Results 1 to 7 of 7
Threaded View
-
18th May 2011, 04:56 AM #6MemberWebsite's:
somik.org sborg.usPHP Code:<?php
/**
* @author Somik Khan
* @copyright 2011
*/
// Enter the name of the file which the count is stored to
$filename = "counter.txt";
// Get action from $_GET['type'] or $_POST['type'] variable
$action = $_POST['type'];
// Load the file into $visit file
$visit = file_get_contents($filename);
// Remove garbase data and only keep the integer value of visit
$visit = intval($visit);
if($action == "increase"){
$visit++;
file_put_contents($filename,$visit);
}
elseif($action == "decrease"){
$visit--;
file_put_contents($filename,$visit);
}
echo $visit;
?>
Usage:
Code:To increase: Go to: http://www.site.com/example.php?type=increase OR post "type" with value "increase" to example.php To decrease: Go to: http://www.site.com/example.php?type=decrease OR post "type" with value "decrease" to example.php To display, just add: include("example.php");
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Help With Letitbit Js To BB Code aka Embedding streaming code in forums
By JoomlaZ in forum Web Development AreaReplies: 1Last Post: 3rd Apr 2012, 09:50 AM -
[Hiring] Somenone to code simple batch script
By STiNKY in forum Completed TransactionsReplies: 0Last Post: 8th May 2011, 12:42 PM -
[Hiring] $10 for a simple piece of code [URGENT]
By kohkindachi in forum Completed TransactionsReplies: 1Last Post: 19th Nov 2010, 01:30 PM -
[vBulletin BB Code] Moderated Message: (Like W-BB's Staff BB Code!)
By Ghost Dog 13 in forum Webmaster ResourcesReplies: 13Last Post: 26th Sep 2009, 06:19 PM -
PHP/HTML : Simple Ad Poll Code
By Pyro in forum Tutorials and GuidesReplies: 4Last Post: 11th Aug 2009, 05:50 AM
themaCreator - create posts from...
Version 3.55 released. Open older version (or...