vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Query Look Right? (https://vborg.vbsupport.ru/showthread.php?t=132970)

paul41598 12-01-2006 08:03 PM

Query Look Right?
 
Does this look ok to use? Because its not working. The votenum gets set correctly, but the votetotal does nothing at all.


PHP Code:

if ($_REQUEST['do'] == 'removerater')
{
$vbulletin->db->query_write("
 UPDATE " 
TABLE_PREFIX "thread
 SET votenum = votenum - 1, votetotal = votetotal - '"
$rater['vote'] ."'
 WHERE threadid = '" 
$threadinfo[threadid] . "'
"
);


Some of my other code that reflects this is:

PHP Code:

$whorate $db->query_read("
        SELECT thread1.threadid, thread1.votetotal, threadrate.userid, threadrate.vote, user.username
        FROM " 
TABLE_PREFIX "threadrate AS threadrate, " TABLE_PREFIX "user AS user, " TABLE_PREFIX "thread as thread1
        WHERE threadrate.threadid = 
$threadinfo[threadid]
        AND thread1.threadid = 
$threadinfo[threadid]
    AND threadrate.userid = user.userid
        ORDER BY vote DESC
    "
);

       while (
$rater $db->fetch_array($whorate))
       {
              
$candelete "<a href=\"misc.php?do=removerater&amp;u=$rater[userid]&amp;t=$rater[threadid]&amp;v=$rater[vote]\" onclick=\"removerater$rater[userid](); return false;\"><img src=\"images/misc/delete.gif\" border=\"0\"></a>";
              eval(
'$raters .= "' fetch_template('whoratebit') . '";');
       } 


CyberAlien 12-03-2006 12:30 PM

Maybe variable $rater is unset? That's the only thing that I think might be causing problem with that query. Try debugging it with print_r() before sql query.


All times are GMT. The time now is 01:33 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.02414 seconds
  • Memory Usage 1,717KB
  • 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
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)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