2muchspam Posted October 15, 2003 Share Posted October 15, 2003 Hello again, I\'m stuck again. I\'ve built a search page for my db. I have a record for the name \"Bill Gates\". If I search for the first name Bill, it finds it. If I search for bill (lower case B) it doesn\'t find it. I\'m using LIKE so it should fing it. Ex: mysql> SELECT \'abc\' LIKE \'ABC\'; -> 1 But it\'s not working so what the heck is going on???? <?php include \'header.php\'; include \'db.php\'; //Create short variables from POST data $searchtype = $_POST[\'searchtype\']; $searchterm = $_POST[\'searchterm\']; //Trim off whitespace $searchterm = trim($searchterm); //Checks for null search if (!$searchterm || !$searchtype){ echo \'You did not select anything to search for! Please go back and try again.\'; exit; } //Add MySQL slashes so as to not destroy the query with bad data. I know this is anal. $searchterm = addslashes($searchterm); $searchtype = addslashes($searchtype); //Query database $db_query = "SELECT * FROM incident.violators WHERE ".$searchtype." LIKE \'%".$searchterm."%\'"; $db_result = mysql_query($db_query) or die("Error in query:".mysql_error()); $num_results = mysql_num_rows($db_result); echo \'<p><br /><b>UP Incident Reporter</b></p>\'; echo \'<br /><br />\'; echo \'<div class="h">Search Results</div>\'; echo \'<div class="t">\'; echo \'<p>Nuber of Matches: \'.$num_results.\'</p>\'; //Loop through database results and build table echo \'<center><table width="80%" border="0" cellspacing="0" cellpadding="2"><tr>\'; echo \'<td bgcolor="cccccc"><b>Name</b></td> <td bgcolor="cccccc"><b>Phone</b></td> <td bgcolor="cccccc"><b>Email</b></td> <td bgcolor="cccccc"><b>Address</b></td> <td bgcolor="cccccc"><b>Violation</b></td> <td bgcolor="cccccc"><b>Disconnect</b></td></tr>\'; while ($result = mysql_fetch_array($db_result)) { echo \'<tr>\'; echo \'<td>\'.$result[\'firstName\'].\' \'.$result[\'lastName\'].\'</td>\'; echo \'<td>\'.$result[\'phone\'].\'</td>\'; echo \'<td>\'.$result[\'email\'].\'</td>\'; echo \'<td>\'.$result[\'address\'].\'</td>\'; echo \'<td>\'.$result[\'violation\'].\'</td>\'; echo \'<td>\'.$result[\'disconnect\'].\'</td>\'; echo \'</tr>\'; } echo \'</table></center>\'; echo \'</div>\'; echo \'<br /><br /><br /><br />\'; include \'footer.php\'; ?> Quote Link to comment Share on other sites More sharing options...
shivabharat Posted October 15, 2003 Share Posted October 15, 2003 Read more about BINARY mysql>SELECT "a" = "A"; -> 1 mysql> SELECT BINARY "a" = "A"; -> 0 Quote Link to comment Share on other sites More sharing options...
2muchspam Posted October 15, 2003 Author Share Posted October 15, 2003 WooHoo! Found the problem. My table field (varchar) was set as BINARY. I changed it to nothing and all is well with the world. Thanks for your time! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.