vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Need some help with sql query to display data (https://vborg.vbsupport.ru/showthread.php?t=54319)

cinq 06-14-2003 09:19 AM

Need some help with sql query to display data
 
Stuck here , trying to code something.

Pls refer to the below code:
PHP Code:

if ($action=="viewarticle") {
$result2 $DB_site->query("SELECT title, author, date, content FROM mytable_content WHERE artid=$artid");
  if (
$rowmysql_fetch_row($result2)) { 
      
$title=$row[0];
$author=$row[1];
$date=$row[2];
$content=$row[3];

eval(
"dooutput(\"".gettemplate('myhack_viewart')."\");");
}


I have a table which has fields : title, author, date and content and would like to display it by calling this action on the php file.

But i cant seem to display anything and am pretty sure my template ( myhack_viewart ) is as I want it to be.

Any help here pls ?


edit: doh just realised there's a PHP/mySql forum ... mods pls move this if needed , thanks.

Xenon 06-14-2003 10:26 AM

use this code:

PHP Code:

if ($action=="viewarticle") { 
$result2 $DB_site->query("SELECT title, author, date, content FROM mytable_content WHERE artid=$artid"); 
  if (
$row $DB_site->fetch_array($result2)) { 
       
$title=$row['title']; 
$author=$row['author']; 
$date=$row['date']; 
$content=$row['content']; 

eval(
"dooutput(\"".gettemplate('myhack_viewart')."\");"); 




cinq 06-14-2003 10:44 AM

Thanks for the quick reply Xenon,
works like a charm :)

Xenon 06-14-2003 12:54 PM

:)
you're welcome


All times are GMT. The time now is 08: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.01043 seconds
  • Memory Usage 1,723KB
  • 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
  • (4)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