mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
11 lines
148 B
PHP
Executable file
11 lines
148 B
PHP
Executable file
<?php
|
|
|
|
require_once('connection.inc');
|
|
|
|
$SQL = array();
|
|
|
|
$DB = new pdo($CONNECTION);
|
|
|
|
$DB->setAttribute(PDO_ATTR_ERRMODE, PDO_ERRMODE_WARNING);
|
|
|
|
?>
|