Being new to this whole PHP/SQL thang I need help getting my search to look past the first word in the column and still retrieve the record even if the keyword is the 10th word in.
Does that make sense ???π
Eg.
The keyword MASSAGE is typed into the form.
The results page looks to = MASSAGE to the $field but because MASSAGE is the 2nd word in it dosen't retrieve the record.
CODE:
$varTreat_rs2 = "Massage";
if (isset($Treatments)) {
$varTreat_rs2 = (get_magic_quotes_gpc()) ? $Treatments : addslashes($Treatments);
}
is this sonething to do with ARRAYs instead of STRINGS ???
HELP PLEASE !!!!!!!!
christL