Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
CREATE TABLE `buton` (
`id` int(11) unsigned NOT NULL auto_increment,
`ip` varchar(255) NOT NULL,
`time` text NOT NULL default '',
PRIMARY KEY (`id`)
) ;
<?
$con = mysql_connect('localhost', 'root', '') or die(mysql_error());
$db = mysql_select_db('buton',$con)or die(mysql_error());
$ip=$_SERVER['REMOTE_ADDR'];
$timenow = time();
$time24=$timenow+86400;
$query1 = "SELECT * FROM buton WHERE ip='$ip' AND time>='$timenow'";
$result1=@mysql_query($query1);
if (@mysql_num_rows($result1)==0){
$sql3=mysql_query("INSERT INTO `buton` VALUES('$ip', '$time24');")or die(mysql_error());
echo'Какво да изпълня ?';
}
else
{
echo'Вече си кликнал !';
} ?>
$ip=$_SERVER['REMOTE_ADDR'];
$timenow = time();
$time24=$timenow+86400;
$result1 = mysql_query("SELECT * FROM buton WHERE ip='$ip' AND time>='$timenow'")or die(mysql_error());
if (@mysql_num_rows($result1)==0)
{
$link="<a href="buton.php">Butona</a>"; }else{ $link=""; }