vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   counting entries (https://vborg.vbsupport.ru/showthread.php?t=94173)

AN-net 08-12-2005 06:10 PM

counting entries
 
ok ive got myself in a small bind... how would i assign a number for each entry returned(example: #1, #2 #3, #4) without a page number withonly the perpage and which entry to start at:
here is where i am at:
PHP Code:

    function grabentries($cache$sort 'ASC'$order 'entrydate'$startat 0$perpage 15)
    {
        global 
$DB_site$vboptions;
        
        
$grabentries$DB_site->query("SELECT journal_entries.entry_id, journal_entries.entrytitle, 
            journal_entries.entrytext, journal_entries.mood, journal_entries.entrydate, 
               journal_entries.entry_totalvotes, journal_moods.mood_name, journal_entries.ipaddress,journal_moods.mood_image, journal_entries.entry_totalrating, 
            COUNT(journal_comments.comment_text) AS comments 
            FROM "
.TABLE_PREFIX."journal_entries AS journal_entries 
            LEFT JOIN "
.TABLE_PREFIX."journal_comments AS journal_comments ON (journal_entries.entry_id=journal_comments.entry_id)
            LEFT JOIN "
.TABLE_PREFIX."journal_moods AS journal_moods ON (journal_moods.mood_id=journal_entries.mood) 
            WHERE journal_entries.entry_id IN ("
.implode(','$cache).") 
                AND entry_active='1'      
                GROUP BY journal_entries.entry_id
            ORDER BY "
.$order." ".$sort.
            LIMIT "
.$startat.", ".$perpage."
        "
);
        while(
$entry$DB_site->fetch_array($getentries))
        {
        }
    } 


Marco van Herwaarden 08-12-2005 07:48 PM

$startat is your starting number, so just increase that for each entry

AN-net 08-12-2005 09:10 PM

oh that makes sense LOL


All times are GMT. The time now is 09:27 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03448 seconds
  • Memory Usage 1,720KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete