Heim >Backend-Entwicklung >PHP-Tutorial >PHP-Testbeispiel, um festzustellen, ob die Datenbankverbindung erfolgreich ist

PHP-Testbeispiel, um festzustellen, ob die Datenbankverbindung erfolgreich ist

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-29 09:15:492517Durchsuche

Testbeispiel für PHP, um festzustellen, ob die Datenbankverbindung erfolgreich ist

Wenn ein Fehler auftritt, dass die Datenbankkonfiguration falsch ist, lesen Sie bitte das Konfigurations-Tutorial von PHP und MySQL:

Wie zum Konfigurieren von PHP-Apache unter Win7-System-MySQL-Umgebung 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>?>

Das Obige stellt das Testbeispiel von PHP vor, um festzustellen, ob die Datenbankverbindung erfolgreich ist, einschließlich des relevanten Inhalts. Ich hoffe, es wird für Freunde hilfreich sein, die an PHP-Tutorials interessiert sind.

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn