As I said, change the following code in your icon.php
PHP Code:
$icons=$DB_site->query("SELECT iconid,title,iconpath FROM icon ORDER BY showid LIMIT ".($limitlower-1).",$perpage");
to this:
PHP Code:
$icons=$DB_site->query("SELECT iconid,title,iconpath,showid FROM icon ORDER BY showid LIMIT ".($limitlower-1).",$perpage");
It has to query the showid from the table, otherwise it can't use it.
Icheb