Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 09-23-2005, 03:56 AM
Nullifi3d Nullifi3d is offline
 
Join Date: Apr 2004
Location: FL, USA
Posts: 215
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default check if mysql row exists

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:
if (!isset($_REQUEST['do'])) {
    
$uid $vbulletin->userinfo['userid'];
    
$check $db->query_first("SELECT * FROM " TABLE_PREFIX "banners WHERE userid = '$uid'");
    
$result mysql_num_rows($check);
    if (
$result !== "0") {
        
$bannerinfo $db->query_first("SELECT status FROM " TABLE_PREFIX "banners WHERE userid = '$uid'");
        if (
$bannerinfo[status] == "declined") {
            
$_REQUEST['do'] = "add";
        } else {
            
$_REQUEST['do'] = "statistics";
        }
    } else {
        
$_REQUEST['do'] = "add";
    }

Code:
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /banners.php on line 58
Reply With Quote
  #2  
Old 09-23-2005, 11:45 AM
Marco van Herwaarden Marco van Herwaarden is offline
 
Join Date: Jul 2004
Posts: 25,415
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

query_first don't return a recordset, but an array with the values itself.

Change:
PHP Code:
    $result mysql_num_rows($check); 
    if (
$result !== "0") { 
to:
PHP Code:
    if ($check) { 
Reply With Quote
  #3  
Old 09-23-2005, 12:41 PM
Nullifi3d Nullifi3d is offline
 
Join Date: Apr 2004
Location: FL, USA
Posts: 215
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thank you that works. I have one more question.

Why does the following work:
PHP Code:
if ($_REQUEST['do'] == 'statistics') {
    
$uid $vbulletin->userinfo['userid'];
    
$check $db->query_first("SELECT * FROM " TABLE_PREFIX "banners WHERE userid = '$uid'");
    
$bannerinfo $db->query_first("SELECT status FROM " TABLE_PREFIX "banners WHERE userid = '$uid'");
    if (
$check && $bannerinfo[status] !== "declined") {
        
$bannerinfo $db->query_first("SELECT userid, username, title, url, html, ext, width, height, clicks, available, impressions, status FROM " TABLE_PREFIX "banners WHERE userid = '$uid'");
        
$banner "<a target=\"_blank\" title=\"$bannerinfo[title]\" href=\"$bannerinfo[url]\"><img alt=\"$bannerinfo[title]\" src=\"http://www.webhostdebate.com/images/banners/$uid$bannerinfo[ext]\" border=\"0\" /></a>";
        if (
$bannerinfo[status] == "inactive"$inactive "<div style=\"padding:5px\"><font color=\"#FF0000\"><b>Banner is awaiting activation!</b></font></div>";
        
$navbits[''] = $vbphrase['banner_statistics'];
        
$templatename 'banners_statistics';
    } else {
        
print_no_permission();
    }

And this does not:
PHP Code:
if ($_REQUEST['do'] == 'statistics') {
    
$uid $vbulletin->userinfo['userid'];
    
$check $db->query_first("SELECT * FROM " TABLE_PREFIX "banners WHERE userid = '$uid'");
    
$bannerinfo $db->query_first("SELECT status FROM " TABLE_PREFIX "banners WHERE userid = '$uid'");
    if (
$check && $bannerinfo[status] !== "declined") {
        
printStats();
    } else {
        
print_no_permission();
    }
}
function 
printStats() {
        
$bannerinfo $db->query_first("SELECT userid, username, title, url, html, ext, width, height, clicks, available, impressions, status FROM " TABLE_PREFIX "banners WHERE userid = '$uid'");
        
$banner "<a target=\"_blank\" title=\"$bannerinfo[title]\" href=\"$bannerinfo[url]\"><img alt=\"$bannerinfo[title]\" src=\"http://www.webhostdebate.com/images/banners/$uid$bannerinfo[ext]\" border=\"0\" /></a>";
        if (
$bannerinfo[status] == "inactive"$inactive "<div style=\"padding:5px\"><font color=\"#FF0000\"><b>Banner is awaiting activation!</b></font></div>";
        
$navbits[''] = $vbphrase['banner_statistics'];
        
$templatename 'banners_statistics';

Reply With Quote
  #4  
Old 09-23-2005, 12:53 PM
Marco van Herwaarden Marco van Herwaarden is offline
 
Join Date: Jul 2004
Posts: 25,415
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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 &&
Reply With Quote
  #5  
Old 09-23-2005, 01:28 PM
Nullifi3d Nullifi3d is offline
 
Join Date: Apr 2004
Location: FL, USA
Posts: 215
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
  #6  
Old 09-23-2005, 01:32 PM
Marco van Herwaarden Marco van Herwaarden is offline
 
Join Date: Jul 2004
Posts: 25,415
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
  #7  
Old 09-23-2005, 02:47 PM
Nullifi3d Nullifi3d is offline
 
Join Date: Apr 2004
Location: FL, USA
Posts: 215
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 02:40 PM.


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.04037 seconds
  • Memory Usage 2,253KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_code
  • (5)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (7)post_thanks_box
  • (7)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (7)post_thanks_postbit_info
  • (7)postbit
  • (7)postbit_onlinestatus
  • (7)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete