1
0
mirror of https://github.com/php/php-src.git synced 2026-04-22 07:28:09 +02:00
Files
archived-php-src/ext/mysql/tests/skipif.inc
T
Jan Lehnardt bf807f6d69 - fix typo
2004-02-16 14:41:38 +00:00

8 lines
140 B
PHP
Executable File

<?php
include 'connect.inc';
$link = @mysql_connect($host, $user, $passwd);
if (!$link) die('skip cannot connect');
mysql_close($link);
?>