I'm developing web page with php and postgres. There I want to search database. This is my query:
When I type "fernando" It gives all names including that name. But it didn't give names having "Fernando"(Capi tal letter).
Ex: Kez fenando, fernando,
not gives: Kenth Fernando
Code:
$sql="SELECT * FROM \"User\" WHERE \"UserName\" LIKE '%$search%';";
Ex: Kez fenando, fernando,
not gives: Kenth Fernando
Comment