mirror of
https://github.com/php/php-src.git
synced 2026-04-28 10:43:30 +02:00
11 lines
147 B
PHP
Executable File
11 lines
147 B
PHP
Executable File
<?php
|
|
|
|
require_once('connection.inc');
|
|
|
|
$SQL = array();
|
|
|
|
$DB = new pdo($CONNECTION);
|
|
|
|
$DB->setAttribute(PDO_ATTR_ERRMODE, PDO_ERRMODE_WARNING);
|
|
|
|
?>
|