2009年8月5日 星期三

Connect Mysql via PHP smaple code

 

refer : How to use PHP to connect MySQL Database?
https://forum.website-solution.net/viewtopic.php?t=65

<?php
# ######################################################################
# ######## MySQL Database Username, Password, and Database Name ########
# ######################################################################
$mySQLUsername = "root";   # Change to your MySQL username
$mySQLPassword = "123";      # Change to your MySQL password
$mySQLDBname = "mysql";      # Change to your MySQL database name
$mySQLDBHost = "localhost";      # Normally is localhost

# ###########################################
# ######## Initialize the Connection ########
# ###########################################
$mysqlLink = mysql_connect( $mySQLDBHost , $mySQLUsername, $mySQLPassword )
          or die("Could not connect to MySQL database - $mySQLDBname");

# #################################
# ######## Select Database ########
# #################################
mysql_select_db( $mySQLDBname ) or die("Could not select database - $mySQLDBname");

# ###################################################################
# ######## Prepare SQL, Fetch Data, and display it onto HTML ########
# ###################################################################
$strSQL = "select host,user from user";
$result = mysql_query($strSQL) or die("Query failed - $strSQL");
while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
   $strHost = $row[ 'host' ];
   $strUser = $row[ 'user' ];
   echo "\n<p>Host: $strHost , User: $strUser  </p>";
}

# ###########################################
# ######## Close the MySQL connecton ########
# ###########################################
mysql_close( $mysqlLink );

?>

沒有留言: