The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
I need to check if a mysql row exists for the visiting user ($vbulletin->userinfo['userid']). I am using the below code but am getting an error at the top of the pages.
PHP Code:
Code:
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /banners.php on line 58 |
#2
|
|||
|
|||
![]()
query_first don't return a recordset, but an array with the values itself.
Change: PHP Code:
PHP Code:
|
#3
|
|||
|
|||
![]()
thank you that works. I have one more question.
Why does the following work: PHP Code:
PHP Code:
|
#4
|
|||
|
|||
![]()
This don't work becuase $db (and probably other var's) are outside scope in that function. Bring them into scope by adding a 'global $db;'
PS Better use AND then && |
#5
|
|||
|
|||
![]()
adding global $db; did stop the error, but produces a blank page.
I'm actually going to try and simply this by using another route in my code. I need to stop checking if the row exists and using functions. Instead I need to create a row for every username (upon registration). Thanks for any help you gave me so far. Even though I decided not to use this now, knowledge is still usefull. |
#6
|
|||
|
|||
![]()
You will need to put all variables you want to use outside the function (like $navbits, $templatename) in the global line, same goes for all variables you want to use inside the function that already are set outside.
|
#7
|
|||
|
|||
![]()
I knew that (remembered from past code). I just don't want to deal with having to call a function multiple times in my code depending on whether or not a mysql row exists. Nor do I want to check for the row in each of my ifs. It's a hassle and requires more code.
Instead I would rather automatically create the new row for each user upon registration. If you would like to help further please refer to threadid 96751. Thanks for all your help so far. |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|