Invece di tutte quelle condizionali sull'eventuale aggiunta di AND
durante la concatenazione alla query, utilizzare un array e implode
.
$fields = array('sport' => 'sport',
'gender' => 'gender',
'fname' => 'firstName',
'lname' => 'lastName',
'country' => 'country');
$wheres = array();
foreach ($fields as $postfield => $dbfield) {
if ($_POST[$postfield] != 'showAll') {
$wheres[] = "$dbfield = '" . mysql_real_escape_string($_POST[$postfield]) . "'";
}
}
$selectString = "SELECT t2ath.lastName, t2ath.firstName, t2ath.image, t2ath.sport, t2ath.gender, t2ath.country, t2country.flag
FROM t2ath LEFT JOIN t2country
ON t2ath.country = t2country.name";
if (count($wheres) > 0) {
$selectString .= " WHERE " . implode(" AND ", $wheres);
}
$result = mysql_query($selectString);
Per vedere come farlo in modo simile utilizzando le istruzioni preparate PDO, vedere la mia risposta qui:Quale approccio al codice consentirebbe agli utenti di applicare tre variabili opzionali in PHP/MySQL?