Anyone can help me how to fix my voting system. My players voted 3 times but when they reload the page, points back to 0.
Paste this in a new query in your sql server.Quote:
USE [ACCOUNT_DBF]
ALTER TABLE [dbo].[ACCOUNT_TBL] ADD votepoints int NOT NULL CONSTRAINT [DF_ACCOUNT_TBL_votepoints] DEFAULT (0),
lastvote1 DATETIME,
lastvote2 DATETIME,
lastvote3 DATETIME
GO