php通過定義常量連線資料庫出錯

時間 2021-08-11 17:35:05

1樓:敞亮丶

//config.php

<?php

define('host', 'localhost');

define('username','root');

define('password','root');

?>

//connect.php

<?php

require_once('1.php');

$conn = new mysqli(host,username,password);

var_dump($conn);

?>

我這裡測試了是沒有問題的,你看看是不是你的路徑或者某個字母寫錯了

2樓:匿名使用者

這些是 php 的提示而非報錯,php 本身不需要事先宣告變數即可直接使用,但是對未宣告變數會有提示。一般作為正式的**會把提示關掉的,甚至連錯誤資訊也被關掉。

修改php.ini

將error_reporting = e_all改為error_reporting = e_all & ~e_notice

若還有問題到後盾網論壇問題求助專區http://bbs.houdunwang.com

還有個不是辦法的辦法就是在每個檔案頭上加error_reporting(0); 雖然不好弄但是可以解決問題

3樓:匿名使用者

引入檔案 config.php 失敗,可能沒找到這個檔案,試一下相對路徑或絕對路徑,應該是框架配置的問題

請PHP高手來解決,連線資料庫使用者登入程式,。要求MD5密碼加密

mysql query db 這是要幹什麼啊?把這句去掉 sql select from user where name username and password pws 改成 sql select from user where name username.and password pws.1....

php怎麼連線mysql資料庫,php怎麼連線Mysql資料庫問題!

db server localhost db user root db pwd password db name test sql select from user where username admin conn mysql pconnect db server,db user,db pwd m...

網業和資料庫之間的問題,網頁連線資料庫問題

我只給你講前臺 這裡我使用了jquery,方便好用 js function html ps 密碼確認驗證可以自己去寫,在單擊事件開頭驗證就行了。網頁遊戲怎麼連線資料庫的?flash與資料庫進行資料交換連線,是通過actionscript as,就是flash指令碼 解析xml檔案獲取資料,而xml檔...