config.inc.php
<?php
$db_host="localhost";
$db_user="root";
$db_pass="root";
$db_name="stu";
$table_name="student";
$link=mysql_connect($db_host,$db_user,$db_pass) or die("不能連線到伺服器".mysql_error());
mysql_select_db($db_name,$link); //選擇相應的資料庫,這裡選擇stu資料庫
mysql_query("set names utf8"); //設定指定的編碼
$list_name=5;
?>
showdb.php
<?php
require "config.inc.php"; //引用配置檔案
$db_list=mysql_list_dbs($link); //顯示伺服器上的資料庫
echo "伺服器上的資料庫有:
";while($row=mysql_fetch_object($db_list))
?>
在伺服器上配置資料庫
centos mysql rpm qa grep mysql 檢視是否已經安裝mysql 沒安裝跳轉到第二步 1.1 rpm e mysql 解除安裝mysqlyum install gcc yum install y mysql community server 報錯 requires libsa...
Linux伺服器上設定oracle資料庫開機自啟動
linux伺服器上設定oracle資料庫開機自啟動 1.前提條件 確保已經在linux系統中正確安裝好oracle資料庫的服務,使用手動方式可以正常啟動。2.先以root身份登入到linux系統,使用客戶端遠端連線到linux伺服器,推薦使用的遠端連線軟體是xshell。3.鍵入命令 vi etc ...
連線伺服器上mysql資料庫問題
用sqlyog連線伺服器上的mysql資料庫時發現報1130的錯誤,具體錯誤資訊如下 原因是本地主機的網絡卡ip遠端連線時不允許通過該主機連線到mysql伺服器,需要給我的主機新增連線的許可權。登入mysql,grant all privileges on to root identified by...