auto increment number column (undefined) on page next
-
Hi,
The option ‘auto increment number column’ seems to work only for the first page of my table, But if I click page two of my table the # column shows ‘undefined’ and continues to show this on subsequent pages, please advise, thank you.
I’m using the latest version of your plug, some more info below (SQL of CREATE TABLE), I have elected to not show the ‘id’ column in my shortcode and I sort the data by ‘score’ descending
CREATE TABLE
scores
(
id
int(10) unsigned NOT NULL AUTO_INCREMENT,
name
varchar(3) NOT NULL DEFAULT ‘GAL’,
score
int(8) unsigned NOT NULL DEFAULT ‘0’,
level
varchar(15) NOT NULL DEFAULT ‘ALPHA’,
PRIMARY KEY (id
)
) ENGINE=MyISAM AUTO_INCREMENT=107 DEFAULT CHARSET=latin1 COMMENT=’test’;https://www.ads-software.com/plugins/custom-database-tables/
- The topic ‘auto increment number column (undefined) on page next’ is closed to new replies.