一個簡單的自動發送郵件系統(二)

來源:互聯網
上載者:User
關鍵字 一個簡單的自動發送郵件系統(二)
這裡介紹php和MySQL結合起來實用。

  基本上,可以說php是介於後台資料庫和前台瀏覽器的一個中介層,在他們之間傳遞命令。這種方式大大提高了互動的可能性,可以方便使用在投票系統,其他動態使用者輸入和個人化網站中。

  要想實現這種互動,首先必需實現和mysql資料庫連接,可以使用這個命令實現:
  文法:int mysql_connect(string hostname, string username, string passWord); 

  ·hostname - 運行資料庫伺服器所在的主機名稱。
  ·username - 串連到資料庫伺服器的使用者名稱稱。
  ·Password - 使用者密碼。the password set to connect to the MySQL database. 
   如果串連成功,函數返回一個正整數,如果失敗返回一個負數。

   所有的命令,和往常一樣,必需放置在""之間。
   
   讓我們繼續我們的工程,讓我們假設用MySQL建立了以下的資料表:

----------------------------  
 
mysql> CREATE TABLE information (
  -> name VARCHAR (25),
  -> email VARCHAR (25),  
  -> choice VARCHAR (8) );

----------------------------  

  現在讓我們假設我們要吧使用者的資訊插入到這個資料庫中,我們可以通過修改email.php3指令碼來實現,修改如下:

----------------------------  

/* 這個指令碼將使用從moreinfo.html檔案中傳遞過來的變數。 */

/* 聲明一些相關的變數 */

$hostname = "devshed";
$username = "myusername";
$password = "mypassword";
$dbName = "mydbname";

/* 使用MySQL建立的資料表存取資訊 */
$userstable = "information";

/* 網站管理員的郵件地址*/
$adminaddress = "administration@buycorn.com";

/* 與資料庫連接*/
MYSQL_CONNECT($hostname,$username,$password) OR DIE("Unable to connect to database");

@mysql_select_db("$dbName") or die("Unable to select database"); 

PRINT "";
PRINT "Hello, $name.";
PRINT "

";
PRINT "Thank you for your interest.

";
PRINT "We will send information to $email, and have noted that you like $preference";
PRINT "

";

/* 發送有關郵件*/
mail("$email", "Your request for information",
"$namenThank you for your interest!n
We sell fresh corn daily over the Internet!
Place your order at http://www.buycorn.com,
and receive a free package of $preference!");

mail("$adminaddress",
"Visitor request for info.",
"$name requested for information.n

The email address is $email. n The visitor prefers $preference.");

/* 將資料插入資料表中*/
$query = "INSERT INTO $userstable VALUES('$name','$email', '$preference')";
$result = MYSQL_QUERY($query);

PRINT "Your information has also been inserted into our database, for future reference.";

/* 關閉與資料庫的串連*/
MYSQL_CLOSE();
?>

----------------------------  

一些注意的地方:

1、在指令碼一開始聲明的變數是為了函數MYSQL_CONNECT() 。我們也可以直接在函數中將這些值給出,可是,考慮工程的可發展性,這些值應該放在一個獨立的檔案中,用(#include)調入。
2、文法: int mysql_select_db(string database_name, int link_identifier);
·database_name 必需是在伺服器上的資料庫名。
·link_identifier(可選的) 是指明串連,基於此向資料庫伺服器發出請求。
·傳回值為true/false
3、文法: int mysql_query(string query, int link_identifier);
·query 發送向mysql伺服器的sql命令。
·link_identifier(可選擇) 指明串連,基於此向資料庫伺服器發送sql命令。
·傳回值為整數,正數表示成功了,負數表示失敗。
4、文法: int mysql_close(int link_identifier); 
·link_indentifier 與上面相同
·傳回值為整數,正數表示成功了,負數表示失敗。

在下一篇文章中,我將給大家講解如何從mysql中輸出資料。
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.