ADOdb Library for PHP Manual
Prev Installation Guide Next

Installation Guide

Make sure you are running PHP 4.0.5 or later. Unpack all the files into a directory accessible by your webserver.

To test, try modifying some of the tutorial examples. Make sure you customize the connection settings correctly. You can debug using $db->debug = true as shown below:

<?php
    
include('adodb/adodb.inc.php');
    
$db = ADONewConnection($database);
    
$db->debug = true;
    
$db->Connect($server, $user, $password, $database);
    
$rs = $db->Execute('select * from some_small_table');
    print
"<pre>";
    
print_r($rs->GetRows());
    print
"</pre>";
?>

Minimum Install

For developers who want to release a minimal install of ADOdb, you will need:

Optional:

Prev Home Next
Feature Requests and Bug Reports Up Code Initialization

Sponsored by phpLens