mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
10 lines
166 B
PHP
10 lines
166 B
PHP
<?php
|
|
|
|
if (!extension_loaded('odbc')) die('skip');
|
|
|
|
include 'config.inc';
|
|
|
|
$conn = @odbc_connect($dsn, $user, $pass);
|
|
if (!$conn) {
|
|
die('skip could not connect');
|
|
}
|