You will need to replace this:
PHP Code:
$sponsors=$DB_site->query("SELECT id,name,sponban,sponlink,sponpoint,sponexp,sponhits FROM sponsors WHERE (sponexp<=sponhits OR sponhits=0) ORDER BY id DESC");
With this:
PHP Code:
$sponsors=$DB_site->query("SELECT id,name,sponban,sponlink,sponpoint,sponexp,sponhits FROM sponsors WHERE (sponexp<=sponhits OR sponhits=0) LIMIT 10 ORDER BY id DESC");
Adding the
LIMIT 10 attribute specifies how many sponsers should be grabbed per page. You will need to do some more coding though to implement pages, etc.