Home > Backend Development > PHP Tutorial > PHP test example to determine whether the database connection is successful

PHP test example to determine whether the database connection is successful

WBOY
Release: 2016-07-29 09:15:49
Original
2488 people have browsed it

PHP test example to determine whether the database connection is successful

If there is an error that the database configuration is incorrect, please see the configuration tutorial of PHP and mysql:

How to configure the php-Apache-mysql environment under win7 system http://www. cnblogs.com/myall/p/4744837.html

<form action="" method="post">
    <select name="host">
        <option value="localhost" selected>localhost</option>
        <option value="127.0.0.1">127.0.0.1</option>
    </select>
    <br><br><span>    user</span>:<input type="text" name="user" value=""><br><br><span>    pwd </span>:<input type="password" name="pwd" value=""><br><br>
    <input type="submit" value="connent">
    <input type="reset" value="reset">
</form>
<?<span>php 
    </span><span>error_reporting</span>(~<span>E_ALL</span><span>);
    </span><span>$host</span> = <span>$_POST</span>['host'<span>];
    </span><span>$user</span> = <span>$_POST</span>['user'<span>];
    </span><span>$pwd</span> = <span>$_POST</span>['pwd'<span>];
    </span><span>if</span>(<span>isset</span>(<span>$_POST</span>['host']) && <span>isset</span>(<span>$_POST</span>['user']) && <span>isset</span>(<span>$_POST</span>['pwd'<span>])){
        </span><span>if</span>(<span>strlen</span>(<span>$host</span>)<1 or <span>strlen</span>(<span>$user</span>)<1 or <span>strlen</span>(<span>$pwd</span>)<1<span>){
            </span><span>echo</span> "请完善相关数据库链接信息。"<span>;
            </span><span>exit</span>(0<span>);
        }
        </span><span>$conn</span> = <span>mysql_connect</span>(<span>$host</span>, <span>$user</span>, <span>$pwd</span>) or <span>die</span>("Error-数据库连接失败!"<span>);
        </span><span>if</span>(<span>$conn</span><span>){
            </span><span>echo</span> "OK&mdash;数据库连接成功!"<span>;
        }
    }
</span>?>
Copy after login

The above introduces the test example of PHP to determine whether the database connection is successful, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template