bpmildh
Fri 29 December 2006, 02:53 am GMT +0200
MyPagina (pagination) class ver. 1.03 have typos in example_table.sql
PRIMARY KEY() is left out causing phpMyAdmin to say error on import.
To fit example.php the table name should also be 'links'.
/Bjorn
The top of the file should read:
CREATE TABLE `links` (
`id` int(11) NOT NULL auto_increment,
`titel` varchar(75) NOT NULL default '',
`url` varchar(150) NOT NULL default '',
PRIMARY KEY(id)
) TYPE=MyISAM AUTO_INCREMENT=85 ;
PRIMARY KEY() is left out causing phpMyAdmin to say error on import.
To fit example.php the table name should also be 'links'.
/Bjorn
The top of the file should read:
CREATE TABLE `links` (
`id` int(11) NOT NULL auto_increment,
`titel` varchar(75) NOT NULL default '',
`url` varchar(150) NOT NULL default '',
PRIMARY KEY(id)
) TYPE=MyISAM AUTO_INCREMENT=85 ;