mirror of
https://github.com/php/php-src.git
synced 2025-08-17 14:38:49 +02:00
12 lines
166 B
PHP
Executable file
12 lines
166 B
PHP
Executable file
<?php
|
|
|
|
if (!extension_loaded('pdo_mysql')) die('skip');
|
|
|
|
require_once('connection.inc');
|
|
require_once('prepare.inc');
|
|
|
|
if (!$DB) {
|
|
die('skip cannot open db');
|
|
}
|
|
|
|
?>
|