mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
7 lines
267 B
PHP
7 lines
267 B
PHP
<?php
|
|
require_once 'connect.inc';
|
|
$link = @my_mysqli_connect($host, $user, $passwd, $db, $port, $socket);
|
|
if (!is_object($link))
|
|
die(sprintf("skip Can't connect to MySQL Server - [%d] %s", mysqli_connect_errno(), mysqli_connect_error()));
|
|
mysqli_close($link);
|
|
?>
|