$db_user="username";
$db_pass="";
$db_name="MyDB";
# Table structure for table `counter`
#
CREATE TABLE `counter` (
`id` tinyint(4) NOT NULL default '1',
`total` bigint(20) unsigned NOT NULL default '0',
`yesterday` int(10) unsigned NOT NULL default '0',
`today` int(10) unsigned NOT NULL default '0',
`date` date default NULL
) TYPE=MyISAM;
#
# Dumping data for table `counter`
#
INSERT INTO `counter` VALUES (1, 0, 0, 0, NOW());
<?php
include_once("counter.php");
?>