這程式碼是非常簡單的,你很快就看完了吧。主要的工作有兩個函數完成:"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, $>*/
function insert_skills($uid, $. >/* first, we'll delete any entries this user already has
in the table */
purge_lookup("lookup_skills", $uid);
/* now create the sql insert */
$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 */
generates the sctual SQL query */
generates the sctual SQL query */
generates the sctual SQL query */
generates the sctual SQL queo >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 luserupski. id
AND lookup_skills.skill_id = const_skills.id ";
$query .= " AND (";
foreach ($skills as $check) {
$query .lls= " const_skills .lls .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 lls ( const_lls.id lls. BY user.username HAVING count(user.username) >= 2;
這個函數將傳回你所選擇的項目的邏輯與,這就是說,如果我們選了PHP 和Javascript 兩項,只會回傳*同時*擁有PHP 和Javascript兩種技能的求職者的username。如果你想要找擁有其中任一個技能的求職者,你可以用 PHP *OR* Javascript ,如果你想顯示相同的記錄,你可以去掉最後的"GROUP BY..." 子句。
總結
好了,就是這樣。 checkboxes是一個優秀的表單元素,正如本文所談論的。我希望這有助於你用它們來工作,並創建一個數據驅動的網站。