vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   Help with a progress widget please. (https://vborg.vbsupport.ru/showthread.php?t=279698)

B16MCC 03-07-2012 01:56 PM

Help with a progress widget please.
 
Hi guys, I'm looking to build a widget either HTML or PHP to display progress.

Let's say I set a target of ?1000. Perhaps I add this to the database or more simply just use a text file on my server. I read the single line of text from the text file which is my current value. I want to display that value as a progress bar.

For example,

progress bar min value = 0
progress bar max value = 1000

Read value from file, EG, 125
Show this value on the progress bar.

Secondly, I want a button that opens an input box where I enter a value, and it adds that value to the value stored in the text file then updates the progress bar.

I've got some PHP code for reading and writing to a text file , but I've not idea where to start with a progress bar and input box.

Here's what I've got so far, simply displaying the value from the file.

PHP Code:

$file "martin_fund.txt";
$f fopen($file"r");
while ( 
$line fgets($f4) ) {
$output '?' $line;


Any help would be greatly appreciated.
Thanks
B.

kh99 03-07-2012 08:11 PM

You could of course do what you described. I think the easiest thing would be to add an option in the admincp to set the max and current value, and you wouldn't need to read or write a file (but of course that would mean logging in to the admincp to change the value). As for drawing the bar, I think there are a number of progress bar mods that you could look at, and I'm sure if you googled progress bar you'd find the html for just about any look you wanted. I remember looking at on that was just an image that get's stretched based on the percentage, so it was all done with html.


All times are GMT. The time now is 04:17 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.00951 seconds
  • Memory Usage 1,710KB
  • 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_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