一個容易的自動發(fā)送郵件系統(tǒng)(3)
發(fā)表時間:2024-05-26 來源:明輝站整理相關軟件相關文章人氣:
[摘要]一個簡單的自動發(fā)送郵件系統(tǒng)(三) 這里介紹php和mysql結合起來實用。如何從mysql數(shù)據(jù)庫中提取數(shù)據(jù)。 好,我們已經(jīng)成功的完成了我們的要求,很多的數(shù)據(jù)已經(jīng)存在了數(shù)據(jù)庫中,現(xiàn)在的問題是,如何查詢這些數(shù)據(jù),得到有用的結果呢? 在下面的程序中,我們將選擇"apple&qu...
一個簡單的自動發(fā)送郵件系統(tǒng)(三)
這里介紹php和mysql結合起來實用。如何從mysql數(shù)據(jù)庫中提取數(shù)據(jù)。
好,我們已經(jīng)成功的完成了我們的要求,很多的數(shù)據(jù)已經(jīng)存在了數(shù)據(jù)庫中,現(xiàn)在的問題是,如何查詢這些數(shù)據(jù),得到有用的結果呢?
在下面的程序中,我們將選擇"apple"的用戶輸出。
--------------------------------------------------------
<?
/* 聲明一些必須的變量*/
$hostname = "yourhostname";
$username = "yourusername";
$password = "yourpassword";
$userstable = "information"; /* 使用MySQL建立的數(shù)據(jù)表存取信息 */
$dbName = "yourdbname";
/* 與數(shù)據(jù)庫連接*/
MYSQL_CONNECT($hostname, $username, $password) OR DIE("Unable to connect to database");
@mysql_select_db( "$dbName") or die( "Unable to select database");
/* 選擇所有“apple”用戶*/
$query = "SELECT * FROM $userstable WHERE (preference LIKE 'Apples') ";
$result = MYSQL_QUERY($query);
/* 統(tǒng)計有多少這樣的用戶*/
$number = MYSQL_NUMROWS($result);
/* 輸出結果*/
$i = 0;
IF ($number == 0) :
PRINT "<CENTER><P>Nobody in the database prefers Apples!</CENTER>";
ELSEIF ($number > 0) :
PRINT "<CENTER><P>Users preferring Apples: $number<BR><BR>";
WHILE ($i < $number):
$name = mysql_result($result,$i,"name");
$email = mysql_result($result,$i,"email");
PRINT "Visitor $name likes Apples.<BR>";
PRINT "Email address: $email.";
PRINT "<BR><BR>";
$i++;
ENDWHILE;
PRINT "</CENTER>";
ENDIF;
?>
--------------------------------------------------------
將他存為apples.php3
解釋說明:一些新用到的函數(shù):
1、$number = MYSQL_NUMROWS($result);
語法:int mysql_num_rows(string result);
·result 從函數(shù)mysql_query中返回的數(shù)組記錄。
·返回存在$result中的行數(shù)。
2、$name = MYSQL_RESULT($result,$i,"name");
語法: int mysql_result(int result, int i, column);
這個函數(shù)將分離記錄,將每一條賦值給變量。
·$result是指中的數(shù)組結果。
·$i是指數(shù)據(jù)的行。
·column是指mysql數(shù)據(jù)表中列的名字。也可以使用變量。
因此使用一個簡單的while循環(huán),我們就能很容易的將數(shù)據(jù)輸出給瀏覽器。