vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   getting some errors (https://vborg.vbsupport.ru/showthread.php?t=61300)

AN-net 02-07-2004 11:09 PM

getting some errors
 
ok trying to code this but its being evil!
PHP Code:

if($view==gal){
$fgall$DB_site("SELECT gallery_index.gallery_views,gallery.gallery_id,gallery.image_id,gallery.image_url,gallery.image_des,gallery.image_views,gallery.image_rating,gallery.image_date FROM gallery,gallery_index WHERE gallery_index.gallery_views='$id'");
$gallery$DB_site->fetch_array($fgall)
$views=++$gallery[gallery_index];
$tviews$views;
$DB_site->query("UPDATE gallery_index SET gallery_views='$tviews' WHERE gallery_id='$id'");
eval(
'$navbar .= "' fetch_template('navbar') . '";');
eval(
'print_output("' fetch_template('gallery_gal') . '");');
}
?> 

im getting a parse error on Line 21.
Line 21 is this:
PHP Code:

$views=++$gallery[gallery_index]; 


Xenon 02-08-2004 12:32 AM

you forgot a ; one line before

AN-net 02-08-2004 01:03 AM

omg woops, xeon u always catch my small errors.
im so stupid>_<

AN-net 02-08-2004 01:12 AM

ok i cant get this thing to add 1 to # views it gets from DB
this is my code:
PHP Code:

$fgall$DB_site->query("SELECT gallery_index.gallery_views,gallery.gallery_id,gallery.image_id,gallery.image_url,gallery.image_des,gallery.image_views,gallery.image_rating,gallery.image_date FROM gallery,gallery_index WHERE gallery_index.gallery_views='$id'");
$gallery$DB_site->fetch_array($fgall);
$views=++$gallery[gallery_index];
$tviews=$views;
$DB_site->query("UPDATE gallery_index SET gallery_views='$tviews' WHERE gallery_id='$id'");
eval(
'$navbar .= "' fetch_template('navbar') . '";');
eval(
'print_output("' fetch_template('gallery_gal') . '");');
}
?> 

for some reason it just changes em all to 1 and thats it

AN-net 02-08-2004 04:11 PM

anyone have any ideas or tips for making it add one to the views and not just chaning it to one

assassingod 02-08-2004 04:22 PM

1. Don't bump threads until atleast 24 hours later
2. For the UPDATE query, use:
PHP Code:

UPDATE gallery_index SET gallery_views='gallery_views+$tviews' WHERE gallery_id='$id' 

That will add to the views without overwriting the current entry

AN-net 02-08-2004 04:27 PM

dont need to use $gallery[gallery_views]?

assassingod 02-08-2004 04:28 PM

I wouldn't, infact if you only want to add 1 view, i'd use:
PHP Code:

$fgall$DB_site->query("SELECT gallery_index.gallery_views,gallery.gallery_id,gallery.image_id,gallery.image_url,gallery.image_des,gallery.image_views,gallery.image_rating,gallery.image_date FROM gallery,gallery_index WHERE gallery_index.gallery_views='$id'"); 
$gallery$DB_site->fetch_array($fgall);  
$DB_site->query("UPDATE gallery_index SET gallery_views='gallery_views+1' WHERE gallery_id='$id'"); 
eval(
'$navbar .= "' fetch_template('navbar') . '";'); 
eval(
'print_output("' fetch_template('gallery_gal') . '");'); 

?> 


AN-net 02-08-2004 04:58 PM

thanks;)
ill update the thread as experience more evil problems>_<

AN-net 02-08-2004 05:06 PM

darn still aint adding 1 to the view T_T

heres my current code:
PHP Code:

if($view==gal){
$fgall$DB_site->query("SELECT gallery_index.gallery_views,gallery.gallery_id,gallery.image_id,gallery.image_name,gallery.image_url,gallery.image_des,gallery.image_views,gallery.image_rating,gallery.image_date FROM gallery,gallery_index WHERE gallery_index.gallery_id='$id' AND gallery.gallery_id='$id'");
while(
$gallery$DB_site->fetch_array($fgall))
{
    eval(
'$gallerybits .= "' fetch_template('gallery_gal_lvl1') . '";');    
    
$DB_site->query("UPDATE gallery_index SET gallery_views='$gallery[gallery_views]+1' WHERE gallery_id='$id'");
}
eval(
'$navbar .= "' fetch_template('navbar') . '";');
eval(
'print_output("' fetch_template('gallery_gal') . '");');




All times are GMT. The time now is 03:15 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.01212 seconds
  • Memory Usage 1,752KB
  • 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
  • (6)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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