Help me for VOTING SYSTEM ..........

04/19/2013 11:02 hentai1#1
hi how to fix the voting system

when i refresh the points will back to 0

help me

give me the instruction please


Sorry for my bad english .....
04/19/2013 11:54 Velmore#2
Which homepage so you use??
04/19/2013 13:33 hentai1#3
[Only registered and activated users can see links. Click Here To Register...]


This...
04/19/2013 14:36 ArakiLP#4
you must in the Register Script "VotePoints 0" not NULL
04/19/2013 22:30 hentai1#5
Quote:
Originally Posted by ArakiLP View Post
you must in the Register Script "VotePoints 0" not NULL
i dont understand please give me an instruction?
04/20/2013 02:21 Rhyder`#6
You make a column :3
04/20/2013 02:29 hentai1#7
I CANT OPEN NEUZ USING sunkist and patcher what i shall do ? give ,me an instruction
04/20/2013 02:54 xsrf#8
Add this in your ACCOUNT_DBF

PHP Code:
USE [ACCOUNT_DBF]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE 
[dbo].[ACCOUNT_TBL](
    [
account] [varchar](32NOT NULL,
    [
password] [varchar](32NOT NULL,
    [
isuse] [char](1NOT NULL,
    [
member] [char](1NOT NULL,
    [
id_no1] [varchar](32NULL,
    [
id_no2] [varchar](32NULL,
    [
realname] [char](1NOT NULL,
    [
reload] [char](1NULL,
    [
OldPassword] [varchar](32NULL,
    [
TempPassword] [varchar](32NULL,
    [
cash] [intNULL,
    [
lastvote1] [datetimeNULL,
    [
lastvote2] [datetimeNULL,
    [
lastvote3] [datetimeNULL,
    [
votepoints] [intNOT NULL CONSTRAINT [DF_ACCOUNT_TBL_votepoints]  DEFAULT ((0))
ON [PRIMARY]

GO
SET ANSI_PADDING OFF