vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   Problem with vbcms_content_phpeval_page (https://vborg.vbsupport.ru/showthread.php?t=286985)

Fr4n-FX 08-23-2012 04:05 PM

Problem with vbcms_content_phpeval_page
 
PHP Code:

function connect() 

    
$db_user "user"
    
$db_pass "pass"
    
$db_name "namedb"
    
$db_serv "localhost"

    
$res mysql_connect $db_serv$db_user$db_pass ) or die ("Coudn't connect to [$db_serv]"); 
    
$resdb mysql_select_db "$db_name",$res ); 

    return 
$res;
}


$time = array('$row[3]/60' => "$row[4]");
$sexes = array('M''F');

$FORM "<table border='1'>  
<tr> 
<td align='center'>Pos.</td> 
<td align='center'>Char. Name</td> 
<td align='center'>Level</td>  
<td align='center'>Sex</td> 
<td align='center'>Jail Time</td> 
</tr>"

$query_chars "select char_name,level,sex,punish_timer from characters WHERE punish_level=1 order by punish_timer asc limit 10;"
connect(); 
$link mysql_query($query_chars); 
$i=1
$r=255
while ( 
$row=mysql_fetch_row($link) ) 

    
$jailer=$row[3]/1000;
    
$datetime  gmstrftime("%H:%M:%S"$jailer);
    
$link2 mysql_query($query);
    
    
$FORM .= "<tr> 
    <td align='center'>
$i</td> 
    <td align='center'>
$row[0]</td> 
    <td align='center'>
$row[1]</td>  
    <td align='center'>"
.$sexes[$row[2]]."</td>  
    <td align='center'>
$datetime</td>
    </tr>"

    
$i++; 
    
$r -= 0
}

mysql_close();

$output $FORM

Is posible to display this code in cms pages correctly?

--------------- Added [DATE]1345741765[/DATE] at [TIME]1345741765[/TIME] ---------------

Its another database in the same machine ...

kh99 08-23-2012 04:13 PM

The only thing I can see offhand is I think you need one more line near the bottom (outside the loop but before the last line):

Code:

$FORM .= "</table>";

Fr4n-FX 08-24-2012 12:41 PM

Works! Thanks a lot.


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