Blödes Type Juggling in PHP... Und wie macht man's am richtigsten?
function isFilledString($s) {
return is_string($s) && strlen($s) > 0;
}
So? Ggf. noch mit einem trim() dabei?
Zum Thema:
Man könnte die PHP-seitige Stringverkettung auch im SQL durchführen.
$stmt = $mysqli->prepare($select . "WHERE locationname LIKE CONCAT(?, '%') ORDER by locationname ASC" );
Rolf