vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   What is wrong with this? (https://vborg.vbsupport.ru/showthread.php?t=63129)

Gary King 03-31-2004 11:50 PM

Quote:

Originally Posted by Scrub
Instead of making another thread, I'll post in this one. :D. Anyways, I am stuck yet again and on something that I thought would've been easy to do. :x.

Anyways, I am trying to achive something like member.php does, but no luck in making it work. I've scanned countless files trying almsot everything. LOL. But I need to show a username according to the userid, hence like the member.php file. Thanks in advanced. :)

$userinfo = fetch_userinfo($userid);

Then $userinfo is an array that has all the user info such as username, $userinfo['username'], etc.

Scrub 03-31-2004 11:53 PM

You are the king! Thanks again! :D

Scrub 04-10-2004 05:10 PM

Hello again! :)

I am currently trying to pull users from a specific usergroup out of the database. How would I go about doing that? This is the query I have. It only pulls one user out of the database. :(

PHP Code:

$user $DB_site->query_first("SELECT username FROM " TABLE_PREFIX " user WHERE usergroupid = 10"); 


Gary King 04-10-2004 05:42 PM

Using the query_first only gets the first result; use query instead, but then you need to use $DB_site->fetch_array($user); in a while statement.

Scrub 04-13-2004 10:34 AM

Hey,
I appreciate all the help, Gary W. But I am comfused on the while statement. I can't seem to figure out how you make one pretty much. I've looked through the PHP Manual, vBulletin Manual, searched several PHP sites and I am still baffled. I understand a little part I belive.
PHP Code:

if ($_REQUEST['do'] == 'this_thing')
        {
                
$users $DB_site->query("
                            SELECT * 
                            FROM " 
TABLE_PREFIX " user AS user
                            WHERE user.usergroupid = 10
                            ORDER BY user.userid DESC
                            "
);

                while (
$user $DB_site->fetch_array($users))
                    {    
                        
$username fetch_musername($user);
                        eval(
'$main_template_bits = "' fetch_template('main_template_bits') . '";');
                    }

            eval(
'print_output("' fetch_template('main_template') . '");');
        } 

Amd I on the right track? LOL. And I'd very much appriciate if you can make a working sample of a while statement that is in KISS format. :p. Again, I'd like to thank you and everyone else for all the help. :)

Gary King 04-13-2004 10:09 PM

Try something like
PHP Code:

if ($_REQUEST['do'] == 'this_thing'

    
$users $DB_site->query(
        SELECT * 
        FROM " 
TABLE_PREFIX " user AS user 
        WHERE user.usergroupid = 10 
        ORDER BY user.userid DESC 
    "
); 
    
    while (
$user $DB_site->fetch_array($users)) 
    {     
        
$username fetch_musername($user); 
        eval(
'$main_template_bits .= "' fetch_template('main_template_bits') . '";'); 
    } 
    
    eval(
'print_output("' fetch_template('main_template') . '");'); 


Then the main_template_bits would contain a <tr> most likely, or <br /> at the end.

Scrub 04-13-2004 10:31 PM

Thanks man! Though I still don't see where I went wrong at though. Could've it have actually been the template where I forgot the <br /> tag? :confused:

Edit: The <br /> kind of messed up the layout. So I removed it and it still works. :).

Edit again: NEvermind. I missed a . in the eval part in the while query! :D

But thank you so much! :)


All times are GMT. The time now is 12:37 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.01082 seconds
  • Memory Usage 1,746KB
  • 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
  • (3)bbcode_php_printable
  • (1)bbcode_quote_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