vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Foreach Loop (https://vborg.vbsupport.ru/showthread.php?t=166881)

Mythotical 01-16-2008 05:24 PM

Thanks Tefra, will give it a go later.

EDIT: I just noticed something Tefra, in the code above you have it counting categories, why I had it that way I don't know, what I meant to count when viewing the main page you see a total number of files for that cat and all sub cats then a total for files under that main cat only. I'm still trying to figure that out, once I get the cats sorted, I'll post up my file count stuff.

--------------- Added [DATE]1200524647[/DATE] at [TIME]1200524647[/TIME] ---------------

Seems this line:
PHP Code:

$id = (empty($vbulletin->GPC['id'])) $vbulletin->GPC['id']; 

is causing this error:
Code:

Parse error: syntax error, unexpected T_LNUMBER in /downloads.php on line 96
I changed it to '0' but got an error of encapsed this and that. So I'm not sure about that line.

Dismounted 01-17-2008 03:07 AM

PHP Code:

$id = (empty($vbulletin->GPC['id'])) ? $vbulletin->GPC['id']; 

Missing ternary operator.

Mythotical 01-17-2008 03:21 AM

Duh, I was just looking at similar code in another file, didn't even think about that. Thanks Dismounted.

Tefra 01-17-2008 07:26 AM

sorry about the syntax error, the code above is based on my suggestion to calculate the entries of each category during the management of the categories and during the add, edit, delete and tje move of the entries.

If you decide to go with a multi-level structure the counting with queries during listing will be really ugly.

If you go with this structure for example

Downloads A
- Downloads ab | Downloads ac

You can't have it saying Downloads A total entries = 0 when the subs have entries inside.

Marco van Herwaarden 01-17-2008 07:36 AM

also shouldn't it be:
PHP Code:

$id = (empty($vbulletin->GPC['id']) ? $vbulletin->GPC['id']); 

Also as you are already using the GPC functions to only allow a numeric value, this is probably useless as it will already default to 0.

Dismounted 01-17-2008 08:22 AM

Marco, both methods are correct.

Guest190829 01-17-2008 08:46 AM

Marco is correct, however, that it is a redundant check - what should be checked is if the id is negative or not, which can be done using TYPE_UINT.


All times are GMT. The time now is 04:49 AM.

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.01220 seconds
  • Memory Usage 1,730KB
  • 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_code_printable
  • (3)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete