PHP code example of gabriel-binotti / connection-pdo
1. Go to this page and download the library: Download gabriel-binotti/connection-pdo 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/ */
gabriel-binotti / connection-pdo example snippets
// Version 1.0.0
composer
DB_HOST = host
DB_NAME = name
DB_PORT = port
DB_USER = username
DB_PASS = password
DB_TYPE = type_connection
$stmt->bindValue(':campo', getValor(), PDO::PARAM_BOOL); // reference bool value
$stmt->bindValue(':campo', getValor(), PDO::PARAM_NULL); // reference null value
$stmt->bindValue(':campo', getValor(), PDO::PARAM_INT); // reference int value
$stmt->bindValue(':campo', getValor(), PDO::PARAM_STR); // reference string value
$stmt->bindValue(':campo', getValor(), PDO::PARAM_LOB); // reference object value to store large binary data.
// Version X86
extension=php_pdo_sqlsrv_73_ts_x86.dll
extension=php_sqlsrv_73_ts_x86.dll
// Version x64
extension=php_pdo_sqlsrv_73_ts_x64.dll
extension=php_sqlsrv_73_ts_x64.dll
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.