!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:     example5.php (2.3 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
require_once 'XML/FastCreate.php';
require_once 
'XML/FastCreate/tags/XHTML_1_0_STRICT.php';
error_reporting(E_ALL);

// Create XML
$x =& XML_FastCreate::factory('Text',
    array(
        
// Add the DocType for XHTML 1.0 Strict
        
'doctype'   => XML_FASTCREATE_DOCTYPE_XHTML_1_0_STRICT,
    )
);

$x->html(

    
$x->head(

        
$x->title('Example 5 - 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 5"),
            
            
$x->h3("Use the same syntax without overloading"),

            
$x->p(
                
$x->a(array('href'=>$_SERVER['PHP_SELF'].'s'), 
                    
"PHP source file")
            ),

            
$x->p(
                
$x->a(array('href'=>'./'), "Others examples")
            ),
            
                
            
$x->p(array('class'=>'require'),
                
"With Zend Optimizer, the overload system will crash !"),
                
            
$x->p("But you can disable overloading and keep the same syntax."),
            
$x->p(" You must define the list of tags before include() into "
                
."\$GLOBAALS['XML_FASTCREATE_NO_OVERLOAD']  :"),
                
            
$x->p(array('class'=>'code'), 
                
$x->noquote(nl2br(
                    
"\$GLOBAALS['XML_FASTCREATE_NO_OVERLOAD'] = array(  
                        'html', 'head', 'title', 'body', 'style', 'div',  
                        'h1', 'h3', 'p', 'a', 'br', 'hr', 'img', 'pre'
                    );  
                    require_once 'XML/FastCreate/Text.php';  
                    \$x = new XML_FastCreate_Text();"
))
            ),

            
$x->p("If you use translation tags, add them to the list."),

            
$x->p("If a tag is a PHP reserved word, prefix it by underscore in"
                
." the tags list and when you call it."),

            
$x->p("Tags lists exists for HTML 4.01 and XHTML 1.0, you can "
                
." include the list like this :"),
                
            
$x->p(array('class'=>'code'), 
                
$x->noquote(nl2br(
                    
"require_once 'XML/FastCreate/tags/XHTML_1_0_STRICT.php';  
                    require_once 'XML/FastCreate/Text.php';  
                    \$x = new XML_FastCreate_Text();"
))
            )
        )
    )
);

$x->toXML();

?>

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