Author Topic: [MOD-HELP] TOP 20 IMAGES BY HITS  (Read 4385 times)

0 Members and 1 Guest are viewing this topic.

Offline sasuke

  • Newbie
  • *
  • Posts: 32
    • View Profile
[MOD-HELP] TOP 20 IMAGES BY HITS
« on: August 08, 2002, 04:44:48 AM »
I want to put top 20 of imagenes by hits, as she can?  I have published these lines:  

Quote
$site_db->free_result();

for ($i = 1; $i <= 10; $i++) {
  if (isset($top_list[$i])) {


for this


Quote
$site_db->free_result();

for ($i = 1; $i <= 11; $i++) {
  if (isset($top_list[$i])) {

Quote


but it does not work

Offline Jan

  • Administrator
  • 4images Guru
  • *****
  • Posts: 5.024
    • View Profile
    • 4images - Image Gallery Management System
[MOD-HELP] TOP 20 IMAGES BY HITS
« Reply #1 on: August 08, 2002, 07:59:51 AM »
First change
Code: [Select]
LIMIT 10";
to
Code: [Select]
LIMIT 20";

Then change
Code: [Select]
for ($i = 1; $i <= 10; $i++) {
to
Code: [Select]
for ($i = 1; $i <= 20; $i++) {

Then edit your template top.html and add the lines to the html-table.

Jan
Your first three "must do" before you ask a question:
1. Forum rules
2. FAQ
3. Search

Offline sasuke

  • Newbie
  • *
  • Posts: 32
    • View Profile
[MOD-HELP] TOP 20 IMAGES BY HITS
« Reply #2 on: August 08, 2002, 05:23:05 PM »
THANKS !!

VOY A PROBAR
------------