I have the following query, the bottom line was previously... This however gave me any rep number which had say '5' in it, so i got results from '5', '25', '15' etc... Changing it to what it is currently make's the rep search work but kills all the other search fields... I've also tried taking out the %% and keeping LIKE but still breaks the search... Any ideas anybody?PHP Code:AND tblrepresentatives.rep_ID LIKE '%$rep%'
PHP Code:$sql = "SELECT tblmembers.*, tblemployment.*,
tblrepresentatives.FirstName,
tblrepresentatives.LastName
FROM tblmembers
LEFT JOIN tblrepresentatives ON (tblmembers.rep_ID = tblrepresentatives.rep_ID)
LEFT JOIN tblemployment ON (tblmembers.ID = tblemployment.MembersID)
WHERE tblmembers.FirstName LIKE '%$firstName%'
AND LastName LIKE '%$lastName%'
AND Email LIKE '%$email%'
AND Location LIKE '%$venue%'
AND State LIKE '%$state%'
AND Member LIKE '%$status%'
AND tblrepresentatives.rep_ID = '$rep'";



Reply With Quote
Bookmarks