!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/examples/newshape/   drwxr-xr-x
Free 9.82 GB of 61.93 GB (15.85%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     square.php (1.99 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Basic Square Progress example.
 *
 * <b>start</b> parameter could be equal to:
 * - 'topleft'     = beginning at top left corner (default)
 * - 'topright'    = beginning at top right corner
 * - 'bottomright' = beginning at bottom right corner
 * - 'bottomleft'  = beginning at bottom left corner
 *
 * @version    $Id: square.php,v 1.2 2005/07/25 11:19:41 farell Exp $
 * @author     Laurent Laville <pear@laurent-laville.org>
 * @package    HTML_Progress
 * @subpackage Examples
 */

require_once 'HTML/Progress.php';

$s = isset($_GET['start']) ? $_GET['start'] : 'topleft';

$bar = new HTML_Progress();
$bar->setAnimSpeed(100);
$bar->setIncrement(10);

$ui =& $bar->getUI();
$ui->setStringAttributes('valign=top align=center height=30');
$ui->setOrientation(HTML_PROGRESS_POLYGONAL);
$ui->setCellAttributes('width=20 height=20');
$w 3;
$h 3;
$ui->setCellCoordinates($w,$h);          // square 3x3
$coord $ui->getCellCoordinates();

switch (
strtolower($s)) {
 case 
'topright':
     for (
$i=1$i<$w$i++) {
         
$shift array_shift($coord);
         
array_push($coord$shift);
     }
     break;
 case 
'bottomright':
     for (
$i=1$i<($w+$h-1); $i++) {
         
$shift array_shift($coord);
         
array_push($coord$shift);
     }
     break;
 case 
'bottomleft':
     for (
$i=1$i<$w$i++) {
         
$pop array_pop($coord);
         
array_unshift($coord$pop);
     }
     break;
 case 
'topleft':
 default:
     break;
}
$ui->setCellCoordinates($w$h$coord);
?>
<html>
<head>
<title>Basic Square ProgressBar example</title>
<style type="text/css">
<!--
<?php echo $bar->getStyle(); ?>

body {
    background-color: #FFFFFF;
    color: #000000;
    font-family: Verdana, Arial;
}

a:visited, a:active, a:link {
    color: navy;
}
// -->
</style>
<script type="text/javascript">
<!--
<?php echo $ui->getScript(); ?>
//-->
</script>
</head>
<body>

<?php
echo $bar->toHtml();
$bar->run();
?>

</body>
</html>

:: 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.5338 ]--