你是在
創(chuàng)新互聯(lián)專注于青島企業(yè)網(wǎng)站建設,響應式網(wǎng)站設計,成都做商城網(wǎng)站。青島網(wǎng)站建設公司,為青島等地區(qū)提供建站服務。全流程按需策劃設計,專業(yè)設計,全程項目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務
服務器端
測試的吧,可能是
網(wǎng)站服務器
關(guān)閉了php的錯誤警告,只要你有啥語法錯誤,數(shù)據(jù)庫連接方面的錯誤,網(wǎng)站上顯示就會一片空白,你貼在這里的代碼是對的,只是沒有分行,不知道你的源文件是不是也是沒分行,,如果沒分行的行,那肯定會顯示空白。
比如有個user的表,且表里有數(shù)據(jù)。
$user=M('User');
$list=$user-find();
dump($list);
若有數(shù)據(jù),則表示連接成功。土辦法。
form action="" method="post"
select name="host"
option value="localhost" selectedlocalhost/option
option value="127.0.0.1"127.0.0.1/option
/select
brbr
user:input type="text" name="user" value=""brbr
pwd :input type="passWord" name="pwd" value=""brbr
input type="submit" value="connent"
input type="reset" value="reset"
/form
?php
error_reporting(~E_ALL);
$host = $_POST['host'];
$user = $_POST['user'];
$pwd = $_POST['pwd'];
if(isset($_POST['host']) isset($_POST['user']) isset($_POST['pwd'])){
if(strlen($host)1 or strlen($user)1 or strlen($pwd)1){
echo "請完善相關(guān)數(shù)據(jù)庫鏈接信息。";
exit(0);
}
$conn = mysql_connect($host, $user, $pwd) or die("Error-數(shù)據(jù)庫連接失??!");
if($conn){
echo "OK—數(shù)據(jù)庫連接成功!";
}
}
?