1. Go to this page and download the library: Download igorgoroun/openerp-client library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
igorgoroun / openerp-client example snippets
#!php
use Delmar\OpenERP\OpenERP;
$erp = new OpenERP('http://127.0.0.1:8089', 'utf-8');
$erp->login('db_test', 'myLogin', 'myPassword'); // return user id, if success
#!php
$erp->login('db_test', 'myLogin', 'myPassword');
$partner = ['name' => 'John', 'email' => '[email protected]'];
$erp->create('res.partner', $partner); // return record ID, if it created