i use simple vote and reward script and i no understand something:
in vote.php i have:
and in my database in the column lastVoteDate i have 1312570249 , how calculate the script that number(1312570249)? the lastVoteDate is time()+(12*60*60) or time()+43200 , but this time() how is calculateQuote:
$lastVoteDate = time()+(12*60*60);
query['getData'] = mssql_fetch_array(mssql_query("select * from memb_info where memb___id='".$data['accountName']."'"));
$query['insertAcc'] = mssql_query("insert into votes(accName, lastVoteDate, voteLink) values('".$data['accountName']."','".$lastVoteDate."', '".$_GET['vote_id']."', )");
