In HTML
This website has been visited <?php visitor_counter();?> times.
function visitor_counter(){
global $wpdb;
$table=$wpdb->prefix.'vcounter';
$charset_collate = $wpdb->get_charset_collate();
$sql = "CREATE TABLE $table (
ipaddress varchar(100) UNIQUE NOT NULL
) $charset_collate;";
require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
dbDelta($sql);
$ipaddress=$_SERVER['REMOTE_ADDR'];
$value=array('ipaddress' => $ipaddress );
$wpdb->insert($table, $value);
$count="select count(ipaddress) from ".$table;
$c= $wpdb->get_var($count);
echo number_format($c+850780);
}
Subscribe to:
Post Comments (Atom)
Featured Post
Make money online
https://www.wpbeginner.com/beginners-guide/make-money-online/?fbclid=IwAR0_9_5aHmbB4rDisaPevdnO4uAgo0N9heHgPu1TjerjurE5ilD2NyzeB2A
Popular Posts
-
DALCHOKI AS "BHEDETAAR" OF KATHMANDU Dalchoki is a village development committee in Lalitpur District in the Bagmati Zone of Ce...
No comments:
Post a Comment