PHP code example of nfaiz / pdoifx
1. Go to this page and download the library: Download nfaiz/pdoifx 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/ */
nfaiz / pdoifx example snippets
$builder = ifx_connect();
$result = $builder->table('users')
->select('id, name')
->where('age', '>', 18)
->orderBy('id', 'desc')
->limit(2)
->getResult();
d($result);