資料|資料庫
介紹
checkbox是一個非常有用的頁面表單項,在讓使用者進行多重選取的情況下,它甚至可以允許使用者選擇全部項目或是一個都不選。但是,儘管這是一個非常優秀的表單元素,但在我們的工作中,在如何正確地儲存選擇項這方面總存在一些易混淆的情況發生。本文將描述在遵循好的資料庫設計原則的方法下,如何把checkbox選擇項正確地儲存在資料庫中。
要求
本文將闡述如何把選擇項正確地儲存在使用者資料庫中的方法。儘管這裡包括了有用的PHP代碼,但我將從資料庫設計的觀點來表達它們,所以,你可以很方便地使用任何一個資料庫和伺服器端指令碼語言來實現。我只是想提供一個如何做的方法,讓你能應用於你自己的網站中。如果你想運行這裡的源碼,你需要安裝php、mysql和網路伺服器。
例1:招聘網站
假如你被要求做一個招聘類的網站,允許求職的軟體開發人員填寫他們的技能,讓僱主能訪問這個網站並根據求職者的技能找到合適的員工。你也知道,一個開發人員擁有的技能會多於一個,因此你決定這樣設計你的網站。
每一個求職者將允許訪問本站,註冊一個使用者,並且輸入他的技能,Checkbox就派上用場了,你可能想作這樣的一頁:
__ PHP __ MySQL __ Zope __ Perl __ Javascript __ JSP
[提交]
每一個求職都可以選擇他所擁有的技能。顯然對於不同人來說這選擇項是不同的。一個人可能會是PHP和Mysql,其它人可能只是JSP。你將如何儲存這些選擇呢?一個很自然的想法是針對每個選項建一個欄位,這樣開始可以正常工作。但是隨後你可能會發現,當你想擴充或調整時,麻煩就來了,你可能不得不修改你的表結構。 好的方法應是這樣的:
你應有一個使用者表包含使用者的註冊資訊,如使用者名稱、密碼和其它一些你需要的什麼內容。假如你直接使用本文後面給出的源碼,你要建一個簡單的表如下:
id username 1 User1 2 User2 3 User3
我們先建一個表 "const_skills" 用如下的 SQL 陳述式:
SQL> CREATE TABLE const_skills ( id int not null primary key, value varchar(20) );
現在我們加入技能:
SQL> INSERT INTO const_skills(id, value) VALUES (1, "PHP"); SQL> INSERT INTO const_skills(id, value) VALUES (2, "MySQL"); SQL> INSERT INTO const_skills(id, value) VALUES (3, "Zope"); SQL> INSERT INTO const_skills(id, value) VALUES (4, "Perl"); SQL> INSERT INTO const_skills(id, value) VALUES (5, "Javascript"); SQL> INSERT INTO const_skills(id, value) VALUES (6, "JSP");
你的 const_skills 現在應是這樣的:
id value 1 PHP 2 MySQL 3 Zope 4 Perl 5 Javascript 6 JSP
這個表只是讓使用者可以選擇相應的技能,現在,再建一個表 lookup_skills 用如下的SQL:
SQL> CREATE TABLE lookup_skills ( id int not null auto_increment primary key, uid int, skill_id int );
這個表lookup_skills的目的是提供從使用者表到開發技能表之間的一個映射關係。換句話說,它讓我們儲存開發人員和他們有的技能,如,當求職者完成選擇點擊提交時,我們將填寫這個表用checkbox中被選定的那些值。對於每一個選上的技能,我們在這個表中加一條記錄,記下使用者id及所選項的id。(想必大家都清楚了吧。我譯到這,嘿嘿…)
在我們看這個插入記錄的代碼之前,我們先設計一下這個頁面,應有的內容有一個表單,我們可以查詢的資料庫並且取checkbox標籤從const_skills表中,建這個checkbox表單項。
代碼如下:
< ?php
/* insert code to connect to your database here */
/* get the checkbox labels */ $skills = get_checkbox_labels("const_skills");
/* create the html code for a formatted set of checkboxes */ $html_skills = make_checkbox_html($skills, 3, 400, "skills[]");
? >
< html > < body > < br > < form name="skills" method="POST" action="insertskills.php" > Check off your web development skills: < ? echo "$html_skills"; ? > < br > < input type="submit" value="Submit" > < /form > < /body > < /html >
< ?php
function get_checkbox_labels($table_name) {
/* make an array */ $arr = array();
/* construct the query */ $query = "SELECT * FROM $table_name";
/* execute the query */ $qid = mysql_query($query);
/* each row in the result set will be packaged as an object and put in an array */ while($row= mysql_fetch_object($qid)) { array_push($arr, $row); }
return $arr; }
/* Prints a nicely formatted table of checkbox choices.
$arr is an array of objects that contain the choices $num is the number of elements wide we display in the table $width is the value of the width parameter to the table tag $name is the name of the checkbox array $checked is an array of element names that should be checked */
function make_checkbox_html($arr, $num, $width, $name, $checked) {
/* create string to hold out html */ $str = "";
/* make it */ $str .= "< table width="$width" border="0" >n"; $str .= "< tr >n";
/* determine if we will have to close add a closing tr tag at the end of our table */ if (count($arr) % $num != 0) { $closingTR = true; }
$i = 1; if (isset($checked)) { /* if we passed in an array of the checkboxes we want to be displayed as checked */ foreach ($arr as $ele) { $str .= "< td >< input type="checkbox" name="$name" value="$ele- >id""; foreach ($checked as $entry) { if ($entry == $ele- >value) { $str .= "checked"; continue; } } $str .= " >"; $str .= "$ele- >value";
if ($i % $num == 0) { $str .= "< /tr >n< tr >"; } else { $str .= "< /td >n"; } $i++; }
} else { /* we just want to print the checkboxes. none will have checks */ foreach ($arr as $ele) { $str .= "< td >< input type="checkbox" name="$name" value="$ele- >id" >"; $str .= "$ele- >value";
if ($i % $num == 0) { $str .= "< /tr >n< tr >"; } else { $str .= "< /td >n"; } $i++; }
}
/* tack on a closing tr tag if necessary */ if ($closingTR == true) { $str .= "< /tr >< /table >n"; } else { $str .= "< /table >n"; }
return $str; }
? > |
|
這代碼是非常簡單的,你很快地就看完了吧。主要的工作有兩個函數完成:"get_checkbox_labels" 和 "make_checkbox_html"。其中 "get_checkbox_labels" 查詢表const_skills 並且返回一個對象數組,每一個對象有一個id值和相應的技能名稱。我們傳送這個數組和其它一些參數給"make_checkbox_html" ,這個函數將返回一個字串,用來產生checkbox的html代碼。現在我們把這個字串插入html檔案來產生我們需要的包含有各種技能選擇的表單。注意我並沒有傳送變數 $checked 給"make_checkbox_html",這個參數是一個我們要顯示的checked的對象數組。如果一個使用者學會了一項新的技能,我們可以提供一個“編輯技能“頁,顯示的checkbox框中儲存的使用者的技能項應是被預先 checked。
用這種方法來動態建立一個表單相對於用一個固定的html代碼來產生技能checkbox的好處在哪?嗯,或許我們允許求職者選擇一個在我們的表const_skills中原先沒有的項目,如DHTML,這樣,我們可以將它插入表const_skills中,然後,求職者來訪問我們的網站,就會發現多了一個DHTML選項。這一切無需調整html檔案。
插入 lookup_skills
現在我們已經建立了這個表單,下面我們需要儲存這個使用者所選的技能。在make_checkbox_html函數中,我們用skill[]調用每一個選擇項元素,意味著我們可以以數組元素的形式訪問每個選擇項。這樣我們可以插入把這個選擇插入表lookup_skill中。如果使用者選中5個選項,我們就在lookup_skill中插入5條記錄。記住在表lookup_skills中每一條記錄只有兩個欄位使用者id和技能id。在我的這個例子網站中,使用者可以註冊,然後能建立/編輯他們的簡介。你可能要用session來儲存userid,當他們登入後。但如何管理userid超過了本文的範圍。
下面的代碼,我們假定我們可能訪問這個userid用這個變數名$uid,下面就是插入記錄的函數代碼:
/* the function we call to insert.
the $skills argument is the skills array that
is sent to the script when the user hits the submit button
*/
function insert_skills($uid, $skills) {
/* first, we'll delete any entries this user already has
in the table */
purge_lookup("lookup_skills", $uid);
/* now create the sql insert query */
$query = create_checkbox_query($skills, "lookup_skills", $uid);
/* execute the query */
mysql_query($query);
}
/* helper function for insert_skills().
removes all rows in $table with $uid */
function purge_lookup($table, $uid) {
$q = "DELETE FROM $table, WHERE uid = '$uid'";
mysql_query($q);
}
/* helper function for insert_skills().
generates the sctual SQL query */
function create_checkbox_query($arr, $table, $uid) {
$q = "INSERT INTO $table (uid, skill_id) VALUES";
foreach ($arr as $check) {
$q .= " ( $uid , $check )" . ",";
}
/* remove the last comma and return */
return substr($q, 0, -1);
}
?>
很簡單吧。現在你知道如何從表const_skill讀記錄來動態建立一個表單,也知道如何儲存使用者選擇的技能到表lookup_skills中。下面我們要做什嗎?讓我們看一下搜尋吧
搜尋
當一個僱主來找一個網路開發人員時,他來到你的搜尋網頁面,你可以顯示同樣的一個表單並且允許他選擇他想要僱員擁有的技能。你取到了他選中的技能的數組,然後你可以遍曆這個數組,用一個SQL語句找出擁有此技能的求職者,你可以顯示這個列表或結果,並允許搜尋者點一個項目顯示它的詳細資料。下面的這個函數描述了如何建立這個查詢語句:
/* builds a query to search for the skills
checked off in the $skills array */
function skill_search($skills) {
if (!empty($skills)) {
$query = "SELECT DISTINCT user.username
FROM user, const_skills, lookup_skills
WHERE lookup_skills.uid = user.id
AND lookup_skills.skill_id = const_skills.id ";
$query .= " AND (";
foreach ($skills as $check) {
$query .= " const_skills.id = $check OR";
}
/* remove the final OR */
$query = substr($query, 0, -2);
$query .= ")";
$count = count($skills);
$query .= " GROUP BY user.username HAVING count(user.username) >= $count";
$query .= ";";
return $query;
}
}
?>
如果執行了搜尋 PHP 和 Javascript ,這個函數返回這個語句:
SELECT DISTINCT user.username FROM user, const_skills, lookup_skills WHERE lookup_skills.uid = user.id AND lookup_skills.skill_id = const_skills.id AND ( const_skills.id = 3 OR const_skills.id = 5 ) GROUP BY user.username HAVING count(user.username) >= 2;
這個函數將返回你所選擇的項目的邏輯與,這就是說,如果我們選了PHP 和Javascript 兩項,只會返回*同時*擁有PHP 和 Javascript兩種技能的求職者的username。如果你想要找擁有其中任一個技能的求職者,你可以用 PHP *OR* Javascript ,如果你想顯示相同的記錄,你可以去掉最後的"GROUP BY..." 子句。
總結
好了,就是這樣。checkboxes是一個優秀的表單元素,正如本文所談論的。我希望這有助於你用它們來工作,建立一個資料驅動的網站。