mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
9 lines
213 B
PHP
9 lines
213 B
PHP
<?php
|
|
if (!extension_loaded('mysqli')){
|
|
die('skip mysqli extension not available');
|
|
}
|
|
include "connect.inc";
|
|
if (!@mysqli_connect($host, $user, $passwd, "", 3306)) {
|
|
die('skip could not connect to MySQL');
|
|
}
|
|
?>
|