Downloaded it to look and see how it all worked and what not but seem to have run into problem after problem and can't get it to run.
Imported the sql into a DB and would create the strutcure, kept giving a error on this line
) TYPE=MyISAM AUTO_INCREMENT=85 ;
created it by hand and then imported the rest of the data fine
created the db.php file with
define("DB_SERVER", "localhost");
define("DB_NAME", "page");
define ("DB_USER", "root");
define ("DB_PASSWORD", "testserv");
and changed the sql in line 8 of the example.php to reflect the correct database.
when i run all i get is
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /var/www/page/my_pagina_class.php on line 78
Warning: mysql_free_result(): supplied argument is not a valid MySQL result resource in /var/www/page/my_pagina_class.php on line 83
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /var/www/page/my_pagina_class.php on line 107
is there something that needs to be changed?