vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Trying to combine vbulletin + my own db (https://vborg.vbsupport.ru/showthread.php?t=83538)

misterfade 06-22-2005 10:09 AM

Trying to combine vbulletin + my own db
 
Hi,

I have a page setup that anyone can see, but the info displayed depends if the user is logged in or logged in and part of a certain usergroup. That part I have down.

The top:
PHP Code:

chdir("/path/to/forums/");
require(
'./global.php');
include(
'./includes/functions_user.php');
$session['sessionhash'] = fetch_sessionhash(); 

Where the login/info is:
PHP Code:

if ($bbuserinfo['userid']!=&& $bbuserinfo['usergroupid'] == 12) {

echo 
"Welcome!";

} elseif (
$bbuserinfo['userid']!=0) {
echo 
"You do not have access to this section.";

} else { 

Now I have a separate database that I created with a list of users, they have the same name as the forums, but it also contains lots of other stuff, which I want to display once they're logged in. How would I set it so that when that member logs into that page, it also shows them their info from the other database? I tried:
PHP Code:

if ($bbuserinfo['userid']!=&& $bbuserinfo['usergroupid'] == 12 && $bbuserinfo['username'] == $row_artists['username']) 

but that doesn't work. I don't get any errors, it's just that it doesn't do what I want it to.

I know this seems confusing but if anyone can help me out it would be great.
Thanks.

Marco van Herwaarden 06-22-2005 11:13 AM

Start by changing '&&' by 'AND'.

And sorry i don't know what that $row_artists contain.

misterfade 06-22-2005 12:01 PM

Why would I need to change '&&'? It's the same as AND, no?

$row_artists['username'] is just getting the username from the SQL query I created, I didn't think I had to post that code, should I?


All times are GMT. The time now is 05:43 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.00946 seconds
  • Memory Usage 1,719KB
  • 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)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