glennn.php Posted April 6, 2008 Share Posted April 6, 2008 $checkbox1 = $_POST['specialty']; $string1 = '*'.@implode('*',$checkbox1).'*'; $checkbox2 = $_POST['subspecialty']; $string2 = '*'.@implode('*',$checkbox2).'*'; echo $string2; // } $sql="SELECT * FROM $tbl_user WHERE specialty LIKE '%$string1%' OR subspecialty LIKE '%$string2%' ORDER BY contact_name ASC"; the values in the fields being searched are *Pulmonary Pathology*Renal Pathology* and *Chemical Pathology*Hematopathology* (for instance...) if i search JUST Pulmonary Pathology or JUST Hematopathology i get my results, but if i search with terms that are NOT in there (Molecular Diagnostics) I get NO results. Can someone show me how to get ANY of the data that's in said fields... PLEASE? i've been on this all day... Thanks GN Link to comment https://forums.phpfreaks.com/topic/99782-comparing-checked-values-to-record-fields/ Share on other sites More sharing options...
poleposters Posted April 7, 2008 Share Posted April 7, 2008 Hey I have a hunch that it might be your WHERE syntax. Can you clarify your question.Its a little hard to understand Link to comment https://forums.phpfreaks.com/topic/99782-comparing-checked-values-to-record-fields/#findComment-511406 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.