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.
echo '<a href="vote.php"><div style="width: 100%; height: 22px; position: absolute; top: 0px; left: 0px; z-index: 100; background-color: #ddd; text-align: center; font-size: 15px;">Гласувайте за нас :)</div></a>';
<script type="text/javascript">
var ajaxwin=dhtmlwindow.open("ajaxbox", "ajax", "windowfiles/external.htm", "Window 1", "width=450px,height=150px,left=300px,top=300px,resize=0,scrolling=1", "recal")
ajaxwin.onclose=function(){ //Run custom code when window is being closed (return false to cancel action):
return window.confirm("Close window ?")
}
</script>
<div>
<img src="windowfiles/bird.jpg" style="float: left; margin: 0 10px 10px 0" /></a>Пробно
</div>
<?
ob_start();
include("confa.php");
$sql = mysql_query("SELECT ctime FROM $dbtable WHERE ip=\"$ip\"");
if($row = mysql_fetch_array($sql)) {
$calc = $row['ctime'] + $vtime;
if ($calc > $time) { echo "Можете да гласувате само по веднъж за 24 часа!"; }
else {
$sqlQ = mysql_query("UPDATE $dbtable SET ctime = \"$time\" WHERE ip=\"$ip\"");
header("location: $link");
}
}
else {
$sql = mysql_query("INSERT into `$dbtable`(`ip`,`ctime`) VALUES ('$ip','$time')");
header("location: $link");
}
?>