!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)

E:\copia nuevo\php\pear\adodb\tests\   drwxrwxrwx
Free 7.32 GB of 239.26 GB (3.06%)
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:     test-active-recs2.php (1.41 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
error_reporting
(E_ALL);
include(
'../adodb.inc.php');

include(
'../adodb-active-record.inc.php');

###########################

$ADODB_ACTIVE_CACHESECS 36;

$DBMS = @$_GET['db'];

$DBMS 'mysql';
if (
$DBMS == 'mysql') {
    
$db NewADOConnection('mysql://root@localhost/northwind');
} else if (
$DBMS == 'postgres') {
    
$db NewADOConnection('postgres');
    
$db->Connect("localhost","tester","test","test");
} else
    
$db NewADOConnection('oci8://scott:natsoft@/');


$arr $db->ServerInfo();
echo 
"<h3>$db->dataProvider{$arr['description']}</h3>";

$arr $db->GetActiveRecords('products',' productid<10');
adodb_pr($arr);

ADOdb_Active_Record::SetDatabaseAdapter($db);
if  (!
$db)  die('failed');




$rec = new ADODB_Active_Record('photos');

$rec = new ADODB_Active_Record('products');


adodb_pr($rec->getAttributeNames());

echo 
"<hr>";


$rec->load('productid=2');
adodb_pr($rec);

$db->debug=1;


$rec->productname 'Changie Chan'.rand();

$rec->insert();
$rec->update();

$rec->productname 'Changie Chan 99';
$rec->replace();


$rec2 = new ADODB_Active_Record('products');
$rec->load('productid=3');
$rec->save();

$rec = new ADODB_Active_record('products');
$rec->productname 'John ActiveRec';
$rec->notes 22;
#$rec->productid=0;
$rec->discontinued=1;
$rec->Save();
$rec->supplierid=33;
$rec->Save();
$rec->discontinued=0;
$rec->Save();
$rec->Delete();

echo 
"<p>Affected Rows after delete=".$db->Affected_Rows()."</p>";
?>

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