Witam. Mam taki problem z zabezpieczeniami... A więc mam sobie kod który odlicza (taki zegar) i chciałbym zabezpieczyć tak żeby nie dało się go shackowac takim prostym programem jak Cheat Engine. A oto mój kod:
<?php
$timestamp = time();
$h=date("i",$timestamp);
$m=date("s",$timestamp);
$d=date("d",$timestamp);
$dm=date("t",$timestamp);
$mm=date("m",$timestamp);
while ($h>24)
{
$h=$h-24;
$d+=1;
if ($d>$dm)
{
$d=0;
$m+=1;
}
}
if ($m=00)
{
$m=0;
}
else
{
$m+=0;
}
$date=$h.':'.$m;
echo '
<script>
var h='.$h.'
var m='.$m.'
function azeg() {
m=m+1;
if (h>24)
{
h=0;
}
if (m>60)
{
h=h+1;
m=0;
refr();
refr_s();
}
if (h<10){hs="0"+h}else{hs=h}
if (m<10){ms="0"+m}else{ms=m}
document.getElementById("zegar").innerHTML=hs+":"+ms;
setTimeout("azeg()",1000);
}
</script>
<div id="zegar"></div>';
?>