vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   While statement not working... (https://vborg.vbsupport.ru/showthread.php?t=52817)

mADmAX` 05-11-2003 05:01 PM

While statement not working...
 
This is what I have inside index.php (of my hack)...

PHP Code:

// ###################### Start #######################

$dwipnavlinkgroups $DB_site->query("SELECT navlinkgroupid,title,displayorder FROM dwipnavlinkgroup ORDER BY displayorder");

while (
$dwipnavlinkgroup=$DB_site->fetch_array($dwipnavlinkgroups)) {

    eval(
"\$newmenunav .= \"".gettemplate("menu_navtable")."\";");

    
$dwipnavlinks $DB_site->query("SELECT navlinkid,navlinkgroupid2,title,varname,value,displayorder FROM dwipnavlink WHERE navlinkgroupid2=$dwipnavlinkgroup[navlinkgroupid] ORDER BY displayorder");

    while (
$dwipnavlink=$DB_site->fetch_array($dwipnavlinks)) {

        eval(
"\$newmenuitem .= \"".gettemplate("menu_navitem")."\";");    

    }

}

eval(
"\$menu .= \"".gettemplate("menu_main")."\";");


// ###################### End ####################### 

This is inside menu_main

PHP Code:

$newmenunav 

This is inside menu_navtable

PHP Code:

$dwipnavlinkgroup[title]
$dwipnavlinkgroup[navlinkgroupid]
<
br>
$newmenuitem 

This is inside menu_navitem

PHP Code:

$dwipnavlink[title]
$dwipnavlink[navlinkgroupid2]
<
br

This is what displays when I call index.php

Navigation 1 <---navgroup
Gallery 7 <---navgroup
Home 1
Forums 1
News 1
Biography 1
Contact Info 1
WebSite Help 1
Links 8 <---navgroup
Home 1
Forums 1
News 1
Biography 1
Contact Info 1
WebSite Help 1
Animals 7
Birds 7


I have marked which are navgroup for you to see, but you can see that its not in order like I want called... It should look like this when called right...

Navigation 1 <---navgroup
Home 1
Forums 1
News 1
Biography 1
Contact Info 1
WebSite Help 1
Gallery 7 <---navgroup
Animals 7
Birds 7
Links 8 <---navgroup

filburt1 05-11-2003 05:13 PM

I don't see the problem immediately but never, ever query in a loop.

mADmAX` 05-11-2003 05:20 PM

How would you do this query then as its in the loop that way the navlinks pull under there correct navgroup (which obviously is not working).

mADmAX` 05-12-2003 01:35 AM

I changed a bit but its not quite working right...

PHP Code:

// ###################### Start #######################

$dwipnavlinkgroups $DB_site->query("SELECT navlinkgroupid,title,displayorder FROM dwipnavlinkgroup ORDER BY navlinkgroupid");

while (
$dwipnavlinkgroup=$DB_site->fetch_array($dwipnavlinkgroups)) {

$linkid $dwipnavlinkgroup["navlinkgroupid"];

    eval(
"\$newmenunav .= \"".gettemplate("menu_navtable")."\";");

    
$dwipnavlinks $DB_site->query("SELECT navlinkid,navlinkgroupid,title,varname,value,displayorder FROM dwipnavlink WHERE navlinkgroupid=\"$linkid\" ORDER BY navlinkgroupid");

    while (
$dwipnavlink=$DB_site->fetch_array($dwipnavlinks)) {

        eval(
"\$newmenuitem .= \"".gettemplate("menu_navitem")."\";");    
    }

}

eval(
"\$menu .= \"".gettemplate("menu_main")."\";");


// ###################### End ####################### 

Displays this...

Navigation 1 <----navgroup
Gallery 2 <----navgroup
Links 3 <----navgroup
Home 1
Forums 1
Biography 1
Contact Info 1
News 1
WebSite Help 1
Animals 2
Birds 2
Test Link 1 3
Test Link 2 3
Test Link 3 3

How come the nav items are not going into there correct nav group? I know it has to be something small but cant figure it out.

PS. The numbers at the end are the navgroupid which they belong to.

Velocd 05-12-2003 02:17 AM

Funny this problem for you was brought up, as I recently found a solution for it myself.

Take a look at the following thread, and the code given inside. Basically this function, modified some, should do as you need.

https://vborg.vbsupport.ru/showthrea...threadid=52836


All times are GMT. The time now is 12:35 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.01095 seconds
  • Memory Usage 1,740KB
  • 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
  • (5)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)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