vb.org Archive

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

Boofo 06-28-2002 04:03 PM

makelabelcode...
 
Can someone please help me with this? I want to be able to call up this file for the information in it for the server load and add it to quik stats. I know it's not right yet. :)

Code:

makelabelcode('Server Uptime', 'uptime.php');

Admin 06-29-2002 07:53 AM

What?

Boofo 06-29-2002 05:59 PM

There's a small hack out that gives the server uptime according to the db. Here is the code I have in my phpinclude:

Code:

//Server Uptime Code
$result = mysql_query("show status");
while ($row = mysql_fetch_array($result)){
if ($row['Variable_name'] == "Uptime") { $uptime = $row['Value']; }
}
$days = ((($uptime/60)/60)/24);
$wholeday = (int) $days;
$hours = (($days - $wholeday)*24);
$wholehour = (int) $hours;
$minutes = (($hours - $wholehour)*60);
$wholeminute = (int) $minutes;

I want to be able to call this to work in Freddie's Quick Stats using:

Code:

makelabelcode('Server Uptime', 'whatever I need to put here');

Admin 06-30-2002 06:00 AM

Code:

makelabelcode('Server Uptime', "whatever variables you want here");
And you can use this:
$days
$wholedays
$hours
$wholehours
$minutes
$wholeminutes

So for example you can do this:
Code:

makelabelcode('Server Uptime', "$wholedays days, $wholehours hours and $wholeminutes minutes.");
You just need to include the code you pasted above this line.

Boofo 06-30-2002 08:01 AM

Thanks, Chen. I forgot about the double quotes. I was trying to do it with single quotes. :)

Is there an easier way to have it say like 1 day instead of 1 days than what I did here? Maybe a global way for all of the s variables instead of having to do them one at a time here?

PHP Code:

//Server Uptime Code
$result mysql_query("show status"); 
while (
$row mysql_fetch_array($result)){ 
if (
$row['Variable_name'] == "Uptime") { $uptime $row['Value']; } 

$days = ((($uptime/60)/60)/24); 
$wholeday = (int) $days
$a='s';
if (
intval($wholeday)<1){
    
$wholeday=0;
}if (
intval($wholeday)==1){
    
$a='';
}
$hours = (($days $wholeday)*24); 
$wholehour = (int) $hours
$b='s';
if (
intval($wholehour)<1){
    
$wholehour=0;
}if (
intval($wholehour)==1){
    
$b='';
}
$minutes = (($hours $wholehour)*60); 
$wholeminute = (int) $minutes;
$c='s';
if (
intval($wholeminute)<1){
    
$wholeminute=0;
}if (
intval($wholeminute)==1){
    
$c='';
}
$seconds = (($minutes $wholeminute)*60);
$wholesecond = (int) $seconds;
$d='s';
if (
intval($wholesecond)<1){
    
$wholesecond=0;
}if (
intval($wholesecond)==1){
    
$d='';


I had to use a,b,c,d for the variables because when I tried to do s for all of them, it wouldn't work. :)

PHP Code:

makelabelcode('Server Uptime'"$wholeday day$a$wholehour hour$b$wholeminute minute$c and $wholesecond second$d."); 


Admin 06-30-2002 08:14 AM

There's no easier way, no.

Boofo 06-30-2002 08:50 AM

Thanks, Chen. I didn't think there was an easier way. :)


All times are GMT. The time now is 08:15 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.01059 seconds
  • Memory Usage 1,739KB
  • 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
  • (5)bbcode_code_printable
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)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