mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
8 lines
No EOL
140 B
PHP
Executable file
8 lines
No EOL
140 B
PHP
Executable file
<?php
|
|
|
|
include 'connect.inc';
|
|
$link = @mysql_connect($host, $user, $passwd);
|
|
if (!$link) die('skip cannot connect');
|
|
mysql_close($link);
|
|
|
|
?>
|