試圖在查詢後過濾結果。需要在tinytext字符串中找到一個字符串。這看起來像:accounting, ACT, algebra 1, algebra 2, American history, biology, calculus, economics, English, European history, geometry, grammar, literature, piano, proofreading, psychology, reading, SAT math, SAT reading, SAT writing, statistics, violin, vocabulary,
查詢後的php mysql過濾器
代碼 - 主題字符串發現是$subject
和搜索列表$row['SubjectList']
$result = mysql_query($query, $dbConn);
$i=0;
while ($row = @mysql_fetch_assoc($result)){
$results[$i]['Name'] = $row['Name'];
$results[$i]['Zip'] = $row['ZipCode'];
$results[$i]['SubjectList'] = $row['SubjectList'];
$i++;
}
只是想與我有什麼工作...可以不會移動到關係表,而且查詢也非常複雜,我已經發布了2個關於如何將搜索添加到它的問題,但沒有人提供了一個可行的解決方案...所以我試圖用條件事實......他們不得不進入陣列。你能幫助解決當前的問題嗎? – Jeffrey 2011-04-10 08:37:23