文章詳情頁
mysql如何配置遠(yuǎn)程php外網(wǎng)鏈接數(shù)據(jù)庫
瀏覽:244日期:2022-06-09 18:59:57
問題描述
$con = mysql_connect("47.107.159.50:3306","root","root");
在阿里云主機(jī)使用phpstudy配置mysql數(shù)據(jù)庫后php代碼鏈接到數(shù)據(jù)庫,數(shù)據(jù)庫地址怎么填寫
問題解答
回答1:噢噢噢噢噢噢回答2:$host = '47.107.159.50';
$port = 3306;
$user = 'root';
$password = 'root';
$db_name = '表名';
if(!$con = mysqli_connect($host,$user,$password,$db_name,$port)){
echo "can not connect to databases";
}else{
if($db_name != ''){
//選擇數(shù)據(jù)庫
if(!mysqli_select_db($con,$db_name)){
echo "can not select database" . $db_name;
return false;
}
}
}
//發(fā)送語句
mysqli_query($con,"SET NAMES 'UTF8'");
相關(guān)文章:
1. 我在導(dǎo)入模板資源時(shí)遇到無法顯示的問題,請(qǐng)老師解答下2. 運(yùn)行python程序時(shí)出現(xiàn)“應(yīng)用程序發(fā)生異常”的內(nèi)存錯(cuò)誤?3. html - 網(wǎng)頁的a標(biāo)簽到底要不要寫上域名?4. css - 移動(dòng)端 盒子內(nèi)加overflow-y:scroll后 字體會(huì)變大5. thinkphp6使用驗(yàn)證器 信息如何輸出到前端頁面6. javascript - h5微信中怎么禁止橫屏7. macos - 無法source activate python278. python - sqlalchemy更新數(shù)據(jù)報(bào)錯(cuò)9. html5 - 前端面試碰到了一個(gè)緩存數(shù)據(jù)的問題,來論壇上請(qǐng)教一下10. PHPExcel表格導(dǎo)入數(shù)據(jù)庫怎么導(dǎo)入
排行榜

熱門標(biāo)簽
網(wǎng)公網(wǎng)安備