!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

C:\Intranet\C\xampp\php\PEAR\XML\tests\   drwxrwxrwx
Free 4.09 GB of 39.52 GB (10.35%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     example2.php (1.73 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
require_once 'XML/FastCreate.php';
error_reporting(E_ALL);

// You can also use the factory() method to make this object
$x =& XML_FastCreate::factory('Text',
    array(
        
// Use the XHTML 1.0 Strict Doctype
        
'doctype'    => XML_FASTCREATE_DOCTYPE_XHTML_1_0_STRICT,
        
        
// Add DTD control with the XHTML 1.0 Strict DTD file
        
'dtd'       => '../dtd/xhtml_1_0_strict.dtd',
    )
);

$x->html(

    
$x->head(
        
$x->title('Example 2 - XML_FastCreate'),

        
$x->style(array('type'=>'text/css''media'=>'all'),
            
$x->cdata("@import url('example.css');")
        )
    ),
    
    
$x->body(

        
$x->div(
        
            
$x->h1("XML_FastCreate - Example 2"),
            
            
$x->h3("Driver : ".$x->_driver),
            
            
$x->h3("Control XML with a DTD file"),
            
            
$x->p(
                
$x->a(array('href'=>$_SERVER['PHP_SELF'].'s'), 
                    
"PHP source file")
            ),
            
            
$x->p(
                
$x->a(array('href'=>'./'), "Others examples")
            )
        ),
        
        
$x->div(

            
// This attribute doesn't exist in the <span> tag 
            
$x->span(array('hello'=>'world'),
                
"Examples of errors DTD validation"
            
),
            
            
// This tag doesn't exist in the DTD
            
$x->foo()
        ),


        
$x->div(

            
// Footer
            
$x->hr(),
            
$x->a(array('href'=>'http://pear.php.net'),
                
$x->img(array('src'=>'http://pear.php.net/gifs/pear-power.png',
                            
'alt'=>'PEAR Logo'))
            )
        )
    )
);

$err $x->toXML();

// Print DTD errors 
if (PEAR::isError($err)) {
    echo 
"<div id='dtd_errors'>"
        
.nl2br(htmlSpecialChars($err->getMessage()))
        .
"</div>";
}

?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0156 ]--