這是一篇php入門教程,講得就是關於php 連接數據庫並顯示所要的數據哦,也就是簡單的php+mysql數據庫在web網頁上的應用實例了。
這是一篇php教程入門教程,講得就是關於php 連接數據庫教程並顯示所要的數據哦,也就是簡單的php+mysql教程數據庫在web網頁上的應用實例了。
$Host="localhost";
$MySQL_UserName="root";
$MySQL_UserPass="password";
$MySQL_Database="db";
$Query="SELECT * FROM domain";
if (!mysql_connect ($Host, $MySQL_UserName, $MySQL_UserPass)){
print "Cannot connect to MySQL: ".mysql_error();
exit;
}
if (!mysql_select_db ($MySQL_Database)){
print "Cannot select db<BR>";
exit;
}
if (!$Result_ID=mysql_query ($Query)){
print "Query Error: ".mysql_error();
exit;
}
while ($Result=mysql_fetch_row($Result_ID)){
print "------------------<BR>";
print "$Result[0]<BR>";
print "$Result[1]<BR>";
print "$Result[2]<BR>";
print "$Result[3]<BR>";
print "-------------------<BR>";
}?>